diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-08-08 11:23:40 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-08-08 11:23:40 +0200 |
commit | ef69f01a6c92cefe08fc34c1518bdff72624903b (patch) | |
tree | b0c10307c121928c3c32830905dd025895a71034 /conf/nginx.conf.template | |
parent | 3556c80167b21e36476dd0a56ded6e8c4fc0020c (diff) | |
download | Comm-on-net-ef69f01a6c92cefe08fc34c1518bdff72624903b.tar.bz2 Comm-on-net-ef69f01a6c92cefe08fc34c1518bdff72624903b.zip |
Install script
Diffstat (limited to 'conf/nginx.conf.template')
-rw-r--r-- | conf/nginx.conf.template | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/conf/nginx.conf.template b/conf/nginx.conf.template index 703699f..cafac58 100644 --- a/conf/nginx.conf.template +++ b/conf/nginx.conf.template @@ -1,7 +1,7 @@ server { listen 80; server_name #URL#; - root /srv/commonnet/; # install path + root /srv/comm-on-net/; # install path access_log /var/log/django/commonnet-access.log; error_log /var/log/django/commonnet-error.log; @@ -16,12 +16,12 @@ server { client_max_body_size 200M; location /static/ { # STATIC_URL - alias /srv/commonnet/collected_static/; # STATIC_ROOT + alias /srv/comm-on-net/collected_static/; # STATIC_ROOT expires 30d; } location /media/ { # MEDIA_URL - alias /srv/commonnet/media/; # MEDIA_ROOT + alias /srv/comm-on-net/media/; # MEDIA_ROOT expires 30d; } |