proxmaster/nginx_example_vhost.txt
2016-02-15 12:30:43 +02:00

11 lines
251 B
Plaintext

server {
listen 80;
server_name EXAMPLE.com;
location / {
uwsgi_pass 127.0.0.1:5117;
include uwsgi_params;
uwsgi_param UWSGI_SCRIPT proxmaster;
uwsgi_param UWSGI_PYHOME /home/USER/proxmaster;
}
}