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