diff options
author | Gareth Rees <gareth@mysociety.org> | 2014-07-21 15:28:49 +0100 |
---|---|---|
committer | Gareth Rees <gareth@mysociety.org> | 2014-07-21 15:30:01 +0100 |
commit | 1644bd7ff3bcc79ed98ac09e9c0c002d3be8f810 (patch) | |
tree | 1e6b8bbc90517a66cde8164718f84f393a8d77f4 | |
parent | 01fa7706aad29590c164575cf62b4881ee5189e8 (diff) |
Change nginx document_root to be FSH compliant
-rw-r--r-- | config/nginx.conf.example | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/nginx.conf.example b/config/nginx.conf.example index 17b26afa3..251d9495d 100644 --- a/config/nginx.conf.example +++ b/config/nginx.conf.example @@ -4,7 +4,6 @@ upstream alaveteli { server { listen 80; - root /var/www/alaveteli/alaveteli/public; location / { proxy_set_header X-Real-IP $remote_addr; @@ -14,6 +13,7 @@ server { proxy_redirect off; try_files $uri @ruby; } + root /srv/alaveteli; server_tokens off; |