blob: 9b5d99641a8bed774368821c0617368fe629f557 [file] [log] [blame]
upstream backend {
# least_conn;
server unix:/var/run/uwsgi/xos.sock;
server 127.0.0.1:9001;
}
server {
listen 80;
server_name 128.112.139.48;
location /static/ {
alias /opt/xos/core/static/;
expires 30d;
access_log off;
}
location /files/ {
alias /var/www/html/files/;
}
location / {
include /etc/nginx/uwsgi_params;
uwsgi_pass backend;
}
}