aboutsummaryrefslogtreecommitdiff
path: root/nginx.conf
diff options
context:
space:
mode:
authorMitch Riedstra <mitch@riedstra.us>2019-09-15 10:20:40 -0400
committerMitch Riedstra <mitch@riedstra.us>2019-09-15 10:20:40 -0400
commit2ec4f69f6f494def901826ad8fdbfb05d2fcfb75 (patch)
tree82c6364a7138ccfdcfe9937b833c4ee8c6e5daf7 /nginx.conf
parent0b42b47b30c70dbc0ac512f3801ae4da6fb25a56 (diff)
downloaddispatch-tracker-2ec4f69f6f494def901826ad8fdbfb05d2fcfb75.tar.gz
dispatch-tracker-2ec4f69f6f494def901826ad8fdbfb05d2fcfb75.tar.xz
Clean up the documentation a little bit moredemodocker-compose
Diffstat (limited to 'nginx.conf')
-rw-r--r--nginx.conf7
1 files changed, 7 insertions, 0 deletions
diff --git a/nginx.conf b/nginx.conf
index 6f9fafa..38b31df 100644
--- a/nginx.conf
+++ b/nginx.conf
@@ -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;