diff --git a/nginx/nginx.conf b/nginx/nginx.conf index a68441f..d8b819b 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -17,6 +17,14 @@ server { client_max_body_size 100M; } + location /admin/ { + proxy_pass http://franklincce; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header Host $host; + proxy_redirect off; + client_max_body_size 100M; + } + location /static/ { alias /home/app/web/staticfiles/; }