diff options
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; } |