isso/ansible/files/nginx.vhost.conf
2015-02-19 13:38:48 +01:00

12 lines
240 B
Plaintext

server {
client_max_body_size 20M;
listen 80 default_server;
server_name isso-dev.local;
root /vagrant/isso/demo;
location / {
uwsgi_pass unix:///run/uwsgi/app/isso/socket;
include uwsgi_params;
}
}