proxmaster/nginx_example_vhost.txt

11 lines
251 B
Plaintext
Raw Normal View History

2016-02-15 05:30:43 -05:00
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;
}
}