10 lines
256 B
Plaintext
10 lines
256 B
Plaintext
|
# running from source (npm start)
|
||
|
location /html5client/ {
|
||
|
gzip_static on;
|
||
|
proxy_pass http://localhost:3000/;
|
||
|
proxy_http_version 1.1;
|
||
|
proxy_set_header Upgrade $http_upgrade;
|
||
|
proxy_set_header Connection "Upgrade";
|
||
|
proxy_set_header Host $host;
|
||
|
}
|