usefulfiles/Censis/Smart Office/smartoffice.nginx
2016-03-15 09:18:21 +00:00

12 lines
281 B
Nginx Configuration File

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;
}
}