Read Why open source. I feel I will need it.

Decided to setup temporary static parking page with DigitalOcean. DO’s documentation mentions only API creation. It took some time to guess what function returning HTML should be. Below it’s. DO gives URL for this function. Private domain could be forwarded to this URL. HTML for this parking page is generated with ChatGPT, by the way.

def main(args):
    html = """
        <!DOCTYPE html>
        <html>
            <head>
                <title>Coming Soon</title>
                <style>
                    html, body {
                        height: 100%;
                        margin: 0;
                        padding: 0;
                    }
                    body {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                    }
                </style>
            </head>
            <body>
                <h1>Coming soon...</h1>
            </body>
        </html>
    """
    return {"body": html}

Setting up parking found out that redirect for https isn’t so easy to setup, it’s impossible to set it up on DNS level. HTTP REDIRECTS WITH DNS, AND WHY HTTPS REDIRECTS ARE SO &!$%-ING HARD. Finally I had to move my domain to DNS of DO. That it become easy to setup domain for App for static website.