Use nginx as the web server, frontending node.

This commit is contained in:
mmcwilliams 2017-11-22 11:45:27 -05:00
parent 3d9985a372
commit f82c487416
1 changed files with 3 additions and 3 deletions

View File

@ -1,9 +1,9 @@
#blootstrap nginx conf #blootstrap nginx conf
server { server {
listen 80; listen 80 default_server;
server_name _;
location / { location / {
proxy_pass http://127.0.0.1:6699/; proxy_pass http://127.0.0.1:6699/;
proxy_set_header Host $host; proxy_set_header Host $host;