Annotation of elwix/config/etc/default/lighttpd/conf.d/auth.conf, revision 1.1.2.2

1.1.2.1   misho       1: #######################################################################
                      2: ##
                      3: ##  Authentication Module
                      4: ## -----------------------
                      5: ##
                      6: ## See http://www.lighttpd.net/documentation/authentification.html
                      7: ## for more info.
                      8: ##
                      9: 
1.1.2.2 ! misho      10: auth.backend                 = "plain"
        !            11: auth.backend.plain.userfile  = "/etc/lighttpd/.sigtrak.pw"
1.1.2.1   misho      12: #auth.backend.plain.groupfile = "/usr/local/etc/lighttpd/lighttpd.group"
                     13: 
                     14: #auth.backend.ldap.hostname = "localhost"
                     15: #auth.backend.ldap.base-dn  = "dc=my-domain,dc=com"
                     16: #auth.backend.ldap.filter   = "(uid=$)"
                     17: 
1.1.2.2 ! misho      18: auth.require               = ( "/server-status" =>
        !            19:                                (
        !            20:                                  "method"  => "digest",
        !            21:                                  "realm"   => "ELWIX web portal",
        !            22:                                  "require" => "valid-user"
        !            23:                                ),
        !            24:                              )
1.1.2.1   misho      25: 
                     26: ##
                     27: #######################################################################

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>