Skip to content

Commit aa9a292

Browse files
committed
add more comments and include auth examples in kasm endpoint
1 parent 9f36f31 commit aa9a292

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

Diff for: kasm.subdomain.conf.sample

+22
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
## Version 2023/04/18
22
# make sure that your kasm container is named kasm
3+
# make sure that your dns has a cname set for kasm and kasm-wizard
34

45
# This configuration assumes 8443 with the environment variable -e KASM_PORT=8443 set adjust to your needs
56
# Post installation you will need to access Kasm > Admin > Zones > default zone (edit) and modify
@@ -14,7 +15,28 @@ server {
1415

1516
client_max_body_size 0;
1617

18+
# enable for ldap auth (requires ldap-location.conf in the location block)
19+
#include /config/nginx/ldap-server.conf;
20+
21+
# enable for Authelia (requires authelia-location.conf in the location block)
22+
#include /config/nginx/authelia-server.conf;
23+
24+
# enable for Authentik (requires authentik-location.conf in the location block)
25+
#include /config/nginx/authentik-server.conf;
26+
1727
location / {
28+
# enable the next two lines for http auth
29+
#auth_basic "Restricted";
30+
#auth_basic_user_file /config/nginx/.htpasswd;
31+
32+
# enable for ldap auth (requires ldap-server.conf in the server block)
33+
#include /config/nginx/ldap-location.conf;
34+
35+
# enable for Authelia (requires authelia-server.conf in the server block)
36+
#include /config/nginx/authelia-location.conf;
37+
38+
# enable for Authentik (requires authentik-server.conf in the server block)
39+
#include /config/nginx/authentik-location.conf;
1840

1941
include /config/nginx/proxy.conf;
2042
include /config/nginx/resolver.conf;

0 commit comments

Comments
 (0)