keep ipv6 listen separate

Signed-off-by: Eric Nemchik <eric@nemchik.com>
This commit is contained in:
Eric Nemchik 2024-07-16 19:41:18 -05:00
commit 4d3e03f6dc
No known key found for this signature in database
230 changed files with 701 additions and 464 deletions

View file

@ -1,12 +1,14 @@
## Version 2024/07/14
## Version 2024/07/16
# 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
# 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;
server_name kasm.*;
@ -50,8 +52,10 @@ 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;
server_name kasm-wizard.*;