diff --git a/docker_assets/nginx.conf b/docker_assets/nginx.conf index c6b23e9a..438ca98d 100644 --- a/docker_assets/nginx.conf +++ b/docker_assets/nginx.conf @@ -38,6 +38,15 @@ server { uwsgi_pass localhost:8080; } + location /admin { + include uwsgi_params; + uwsgi_pass localhost:8080; + } + + location /static/ { + alias /app/staticfiles/; + } + root /app/static; index index.html;