Added example of using nginx

This commit is contained in:
butomo1989
2020-06-26 16:01:12 +02:00
parent 7ad2eb45c8
commit 0460a62956
2 changed files with 30 additions and 0 deletions
Executable
+25
View File
@@ -0,0 +1,25 @@
server {
listen 80;
server_name _;
location /container-1/ {
proxy_pass http://127.0.0.1:6080/;
}
location /container-1/websockify {
proxy_pass http://127.0.0.1:6080/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
# VNC connection timeout
proxy_read_timeout 61s;
# Disable cache
proxy_buffering off;
}
location /emu2/ {
proxy_pass http://127.0.0.1:6081/;
}
}