diff options
author | Gareth Rees <gareth@mysociety.org> | 2014-08-06 11:47:03 +0100 |
---|---|---|
committer | Gareth Rees <gareth@mysociety.org> | 2014-08-18 13:36:09 +0100 |
commit | 457644b5a0474dc21e2f547064437b64dc3fd779 (patch) | |
tree | 147339366e12fcf84fc1bdd892a8382e142c4f36 | |
parent | 82551165adf191cc63943b438b5703e646cdbb4f (diff) |
Use legacy document root
Too difficult to change to FSH standard at this point
-rw-r--r-- | config/nginx-ssl.conf-example | 2 | ||||
-rw-r--r-- | config/nginx.conf.example | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/config/nginx-ssl.conf-example b/config/nginx-ssl.conf-example index 0fdf89f6f..6920e0e96 100644 --- a/config/nginx-ssl.conf-example +++ b/config/nginx-ssl.conf-example @@ -5,7 +5,7 @@ upstream alaveteli { server { listen 443; server_name www.example.com; - root /srv/alaveteli; + root /var/www/alaveteli/public; server_tokens off; diff --git a/config/nginx.conf.example b/config/nginx.conf.example index 0ab09419e..af052bffa 100644 --- a/config/nginx.conf.example +++ b/config/nginx.conf.example @@ -10,7 +10,7 @@ server { server { listen 80 default; server_name www.example.com; - root /srv/alaveteli; + root /var/www/alaveteli/public; server_tokens off; |