From 9937bb48c283f906ad51ba760f417d9f5c2b8ca1 Mon Sep 17 00:00:00 2001 From: sharmasarthak26 <60601125+sharmasarthak26@users.noreply.github.com> Date: Fri, 2 Oct 2020 00:53:30 +0530 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f944fe7..f349cc8 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ The Ways of the World ===================== -## Deployment ## +## Organization ## Our site is deployed on a Linode server and runs behind nginx using fastcgi. Everything is located in `/django/bases/`. -[This] guide was useful in deploying the site. +[This] guide was useful in setup 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. 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. @@ -12,7 +12,7 @@ Restart nginx with `/etc/init.d/nginx restart` and restart django with `/etc/ini [This]: https://code.djangoproject.com/wiki/DjangoAndNginx [docs]: https://docs.djangoproject.com/en/dev/howto/static-files/ -## When Things Go Wrong ## +## When Things Gone Wrong ## Check out [this] if you're having trouble with the path info env variable. [this]: http://neithere.net/dev/notes/nginx-fcgi-django/