I am not sure what I am missing here to get Django running on Google Compute Engine and access it publicly. I am starting with Django packaged by Bitnami since it seems like it would be easy...
I have been following this Getting Started Guide to get a running instance of Django running on Google Compute Engine.
Django Packaged By Bitnami For Google Cloud Platform
It successfully deploys and I see the Bitnami page. I am unable to get pass this point even with the simple example of hello world in their guide. I have used both ./manage.py runserver and serving through Apache Web server with the module mod_wsgi for my project.
Test Your Django Project The Django project can be started by using this command from the /opt/bitnami/projects/PROJECT directory, and it will run on port 8000:
cd /opt/bitnami/projects/PROJECT python manage.py runserver To access the application, browse to http://SERVER-IP:8000/. To end the application, terminate the running Django process.
I have completed a Django Project that I can test and run locally. Getting something basic on Google Compute Engine, is another story.