forked from exozyme/nginx
17 lines
457 B
Text
17 lines
457 B
Text
server {
|
|
listen 443 ssl http2;
|
|
listen [::]:443 ssl http2;
|
|
server_name desk.exozy.me;
|
|
|
|
include conf.d/ssl;
|
|
|
|
location / {
|
|
proxy_pass http://localhost:4080/guacamole/;
|
|
proxy_buffering off;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection $http_connection;
|
|
access_log off;
|
|
}
|
|
}
|