DOCS: update to deployment documentation and new production deployments doc

This commit is contained in:
tycho garen
2011-12-04 14:51:00 -05:00
parent ea5a5b15a3
commit b25b00d26e
2 changed files with 53 additions and 5 deletions

View File

@@ -244,7 +244,7 @@ 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 a control script (i.e. init script.) to launch and restart the
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: ::
@@ -252,13 +252,13 @@ 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=/tmp/mediagoblin.pid \
--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, if you're getting into the really large
deployment category, consider reading the section of this manual on
Celery.
deployments. However, for larger production deployments with larger
processing requirements, see the ":doc:`production-deployments`"
documentation.