Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ The Ways of the World
=====================

## Deployment ##
Our site is deployed on a Linode server and runs behind nginx using fastcgi.
Our site is deployed on a Linode server and runs behind nginx using fast cgi.
Everything is located in `/django/bases/`.
[This] guide was useful in deploying the site.
Fastcgi spawns a number of processes so to keep track of which ones it spawns,
start it with `./manage.py runfcgi host=127.0.0.1 port=8080 pidfile=django.pid`. The pidfile is to keep track of the process ids spawned by fastcgi. Check out the django [docs] to learn about serving static files.
start it with `./manage.py runfcgi host=127.0.0.1 port=8080 pidfile=django.pid`. The pidfile is to keep track of the process ids spawned by fast cgi. Check out the django [docs] to learn about serving static files.
Restart nginx with `/etc/init.d/nginx restart` and restart django with `/etc/init.d/django restart`. Restarting django reloads all django/FastCGI projects at once.

[This]: https://code.djangoproject.com/wiki/DjangoAndNginx
Expand Down