21 lines
266 B
Plaintext
21 lines
266 B
Plaintext
server {
|
|
|
|
listen 8000;
|
|
|
|
location = /favicon.ico { access_log off; log_not_found off; }
|
|
|
|
location /static/ {
|
|
|
|
alias /app/static/;
|
|
|
|
}
|
|
|
|
location / {
|
|
|
|
include proxy_params;
|
|
|
|
proxy_pass http://unix:/run/gunicorn.sock;
|
|
|
|
}
|
|
|
|
} |