lighttpd mod_auth 使用方式
lighttpd config
建立 password file
vi /home/lighttpd/.lighttpdpassword
在裡面寫入
並且將這個 file 設為只有 lighttpd 可以讀
- 在 lighttpd.conf 加入 mod_auth
- 在 mod_auth 裡面加入
auth.debug = 2
auth.backend = “plain”
auth.backend.plain.userfile = “/home/lighttpd/.lighttpdpassword”
裡面的 auth.backend.plain.userfile = “/home/lighttpd/.lighttpdpassword”
代表 password放置的放置的 file location - 加入
auth.require = ( “/docs/” =>
(
“method” => “basic”,
“realm” => “Password protected area”,
“require” => “user=aaa”
)
)
“require” => “user=aaa”代表 /doc 只有 aaa 這個人可以登入
建立 password file
vi /home/lighttpd/.lighttpdpassword
在裡面寫入
aaa=password
並且將這個 file 設為只有 lighttpd 可以讀
沒有留言:
張貼留言