We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8a0712 commit 500d7b9Copy full SHA for 500d7b9
1 file changed
photoprism.subdomain.conf.sample
@@ -11,7 +11,23 @@ server {
11
12
client_max_body_size 0;
13
14
+ # enable for ldap auth, fill in ldap details in ldap.conf
15
+ #include /config/nginx/ldap.conf;
16
+
17
+ # enable for Authelia
18
+ #include /config/nginx/authelia-server.conf;
19
20
location / {
21
+ # enable the next two lines for http auth
22
+ #auth_basic "Restricted";
23
+ #auth_basic_user_file /config/nginx/.htpasswd;
24
25
+ # enable the next two lines for ldap auth
26
+ #auth_request /auth;
27
+ #error_page 401 =200 /ldaplogin;
28
29
30
+ #include /config/nginx/authelia-location.conf;
31
32
include /config/nginx/proxy.conf;
33
include /config/nginx/resolver.conf;
0 commit comments