8/26/2006

lighttpd mod_auth 使用方式

本網頁取自 此頁
記載著 lighttpd 的 auth 方式
當你研發一個網頁時 , 你通常需要 auth 來保證你的研發機密不會被 Google 找到 XD
lighttpd config
  • 在 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 可以讀

沒有留言: