Sha256: 2ccb2257970ee97c84f0b377ef40d9239073db9a76958a9504154bd4206bacca
Contents?: true
Size: 997 Bytes
Versions: 82
Compression:
Stored size: 997 Bytes
Contents
== Deploying a web application: the basics === Anatomy of a web application ==== Ruby ==== Python ===== Django For Django >= 1.4, `passenger_wsgi.py` should contain the following. Replace "mysite" with your application's actual module name. -------------------------------------------------------------------- from mysite.wsgi import application -------------------------------------------------------------------- For earlier Django versions, it should contain: -------------------------------------------------------------------- import os os.environ.setdefault("DJANGO_SETTINGS_MODULE", "mysite.settings") from django.core.wsgi import get_wsgi_application application = get_wsgi_application() -------------------------------------------------------------------- ==== Node.js === Attaching to a virtual host's root URI === Attaching to a sub-URI ==== How to fix broken images/CSS/JavaScript URIs in sub-URI deployments === Restarting the web application === Inspecting the status
Version data entries
82 entries across 82 versions & 2 rubygems