File tree 1 file changed +22
-0
lines changed
1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change 1
1
## Version 2023/04/18
2
2
# make sure that your kasm container is named kasm
3
+ # make sure that your dns has a cname set for kasm and kasm-wizard
3
4
4
5
# This configuration assumes 8443 with the environment variable -e KASM_PORT=8443 set adjust to your needs
5
6
# Post installation you will need to access Kasm > Admin > Zones > default zone (edit) and modify
@@ -14,7 +15,28 @@ server {
14
15
15
16
client_max_body_size 0;
16
17
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
+
17
27
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;
18
40
19
41
include /config/nginx/proxy.conf;
20
42
include /config/nginx/resolver.conf;
You can’t perform that action at this time.
0 commit comments