Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

https interface for user management #648

Open
wants to merge 21 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Prev Previous commit
Next Next commit
protect web by htpasswd
  • Loading branch information
nanda committed Mar 27, 2021
commit d2104da1dd6daae6edda3568de0e416019986f75
14 changes: 7 additions & 7 deletions lighttpd/config/lighttpd.conf
Original file line number Diff line number Diff line change
Expand Up @@ -184,19 +184,19 @@ url.access-deny = ("~", ".inc")
auth.backend = "htpasswd"
auth.backend.htpasswd.userfile = "/etc/openvpn/http/htpasswd"

# auth.require = ( "/server-status" =>
auth.require = ( "" =>
# (
# "method" => "digest",
# "realm" => "download archiv",
# "require" => "user=jan"
# ),
# "/server-info" =>
# (
# "method" => "digest",
# "realm" => "download archiv",
# "require" => "valid-user"
# )
# )
(
"method" => "basic",
"realm" => "Openvpn config",
"require" => "valid-user"
)
)
# }}}

# {{{ mod_evhost
Expand Down