mirror of
https://github.com/linuxserver/reverse-proxy-confs.git
synced 2025-08-14 02:27:24 -07:00
Add http2 to all listen directives
Signed-off-by: Eric Nemchik <eric@nemchik.com>
This commit is contained in:
parent
e1038fda91
commit
0528b56e12
196 changed files with 601 additions and 601 deletions
|
@ -1,13 +1,13 @@
|
|||
## Version 2023/04/18
|
||||
## Version 2023/05/31
|
||||
# make sure that your kasm container is named kasm
|
||||
# make sure that your dns has a cname set for kasm and kasm-wizard
|
||||
|
||||
# This configuration assumes 8443 with the environment variable -e KASM_PORT=8443 set adjust to your needs
|
||||
# Post installation you will need to access Kasm > Admin > Zones > default zone (edit) and modify
|
||||
# Post installation you will need to access Kasm > Admin > Zones > default zone (edit) and modify
|
||||
# Proxy Port to 0 as documented https://www.kasmweb.com/docs/latest/how_to/reverse_proxy.html#update-zones
|
||||
server {
|
||||
listen 443 ssl;
|
||||
listen [::]:443 ssl;
|
||||
listen 443 ssl http2;
|
||||
listen [::]:443 ssl http2;
|
||||
|
||||
server_name kasm.*;
|
||||
|
||||
|
@ -52,8 +52,8 @@ server {
|
|||
# Wizard UI - Please enable some form of auth if publishing to the internet
|
||||
# Or simply remove this and access it locally
|
||||
server {
|
||||
listen 443 ssl;
|
||||
listen [::]:443 ssl;
|
||||
listen 443 ssl http2;
|
||||
listen [::]:443 ssl http2;
|
||||
|
||||
server_name kasm-wizard.*;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue