If you see this page, the nginx web server is successfully installed and working. Further configuration is required.
My First Post: Hello World!
This is the default page for my new server setup. I'm still figuring out how to configure everything, but it's exciting to have a live server on the internet. The plan is to host a few personal projects here.
For now, here's a classic "Hello, World!" in Python to commemorate the occasion:
def say_hello():
print("Hello, World!")
if __name__ == "__main__":
say_hello()
Stay tuned for more updates as I get things up and running. The next step is to deploy a simple Flask application and get the domain properly configured with all the necessary DNS records.