usefulfiles/smartoffice.nginx

12 lines
281 B
Plaintext
Raw Normal View History

2016-03-08 11:07:47 +00:00
server {
listen [::]:80;
listen 80;
location / {
proxy_pass http://localhost:3000;
proxy_set_header Host $host;
# auth_basic "Restricted";
# auth_basic_user_file /etc/nginx/.htpasswd;
}
}