diff options
Diffstat (limited to 'nginx.conf')
| -rw-r--r-- | nginx.conf | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -33,6 +33,8 @@ http { uwsgi_pass app:9200; } + # Pass through the static directory + # This should match whatever is in your config file location /static { alias /var/www; } @@ -40,6 +42,11 @@ http { alias /var/www/static/robots.txt; } + + # Optionally change the log path. + # access_log /var/log/nginx/dispatch.example.com/access.log; + # error_log /var/log/nginx/dispatch.example.com/error.log; + } include conf.d/*.conf; |
