diff --git a/nginx/default.conf b/nginx/default.conf index fe37be0..9557007 100644 --- a/nginx/default.conf +++ b/nginx/default.conf @@ -17,6 +17,14 @@ server { proxy_redirect off; } + location /static/ { + alias /app/wsgi/static/; + } + + location /media/ { + alias /app/wsgi/mediafiles/; + } + error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html;