diff options
author | tycho garen <garen@tychoish.com> | 2011-12-04 17:06:54 -0500 |
---|---|---|
committer | tycho garen <garen@tychoish.com> | 2011-12-04 17:09:39 -0500 |
commit | a085dda5d29a1353eaf7df3ddfc3a7c500af9186 (patch) | |
tree | 361d4834da3622415bf0dfe558d43fad9a5c3c17 /docs/source/deploying.rst | |
parent | 4752fdcf06764965d2f926d99f3831a968d8ea8d (diff) | |
download | mediagoblin-a085dda5d29a1353eaf7df3ddfc3a7c500af9186.tar.lz mediagoblin-a085dda5d29a1353eaf7df3ddfc3a7c500af9186.tar.xz mediagoblin-a085dda5d29a1353eaf7df3ddfc3a7c500af9186.zip |
DOCS:: #675 revision to deployment and production documents
Diffstat (limited to 'docs/source/deploying.rst')
-rw-r--r-- | docs/source/deploying.rst | 25 |
1 files changed, 4 insertions, 21 deletions
diff --git a/docs/source/deploying.rst b/docs/source/deploying.rst index 9c0acf30..70b1a6af 100644 --- a/docs/source/deploying.rst +++ b/docs/source/deploying.rst @@ -239,26 +239,9 @@ example: :: Visit the site you've set up in your browser by visiting <http://mediagobilin.example.org>. You should see MediaGoblin! -Production MediaGoblin Deployments with Paste -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -The instance configured with ``lazyserver`` is not ideal for a -production MediaGoblin deployment. Ideally, you should be able to use -a control script (i.e. init script.) to launch and restart the -MediaGoblin process. - -Use the following command as the basis for such a script: :: - - CELERY_ALWAYS_EAGER=true \ - /srv/mediagoblin.example.org/mediagoblin/bin/paster serve \ - /srv/mediagoblin.example.org/mediagoblin/paste.ini \ - --pid-file=/var/run/mediagoblin.pid \ - --server-name=fcgi fcgi_host=127.0.0.1 fcgi_port=26543 \ - .. note:: - The above configuration places MediaGoblin in "always eager" mode - with Celery. This is fine for development and smaller - deployments. However, for larger production deployments with larger - processing requirements, see the ":doc:`production-deployments`" - documentation. + The configuration described above is sufficient for development and + smaller deployments. However, for larger production deployments + with larger processing requirements, see the + ":doc:`production-deployments`" documentation. |