mirror of
https://github.com/linuxserver/reverse-proxy-confs.git
synced 2025-08-21 05:43:45 -07:00
keep ipv6 listen separate
Signed-off-by: Eric Nemchik <eric@nemchik.com>
This commit is contained in:
parent
28e751d45f
commit
4d3e03f6dc
230 changed files with 701 additions and 464 deletions
|
@ -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.*;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue