星期日, 11月 17, 2024

Apache 保護目錄

 Apache 用密碼保護目錄

放在網路上的目錄不希望被隨便存取,需要有密碼保護。這是目前最簡單的方法

1.  要保護的目錄建立 .htaccess
2.  .htaccess 要加以下內容

AuthType Basic
AuthName "Restricted Area"
AuthUserFile /path/to/.htpasswd
Require valid-user

3. 執行以下指令建立使用者帳號密碼
sh -c "echo -n user_name: >> ./.htpasswd"
sh -c "openssl passwd -apr1 >> ./.htpasswd"


全文連結

0 意見: