2022-07-18 17:04:37 -07:00
|
|
|
server {
|
|
|
|
|
listen 80;
|
|
|
|
|
server_name _;
|
|
|
|
|
|
|
|
|
|
location /static {
|
|
|
|
|
root /usr/share/nginx/html;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
location /media {
|
|
|
|
|
root /usr/share/nginx/html;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
location / {
|
|
|
|
|
include uwsgi_params;
|
|
|
|
|
uwsgi_pass app:3031;
|
2022-07-18 18:31:41 -07:00
|
|
|
uwsgi_param HTTP_X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
|
uwsgi_param REMOTE_ADDR $proxy_add_x_forwarded_for;
|
2022-07-18 17:04:37 -07:00
|
|
|
}
|
|
|
|
|
}
|