28 lines
390 B
Nginx Configuration File
28 lines
390 B
Nginx Configuration File
user nginx;
|
|
|
|
worker_processes 1;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
include /etc/nginx/mime.types;
|
|
client_max_body_size 100M;
|
|
|
|
server {
|
|
|
|
listen 80;
|
|
server_name localhost;
|
|
charset utf-8;
|
|
|
|
location /static/ {
|
|
alias /var/www/static;
|
|
}
|
|
|
|
location / {
|
|
proxy_pass http://web:8000;
|
|
}
|
|
|
|
}
|
|
} |