$sudo nano /etc/apache2/httpd.conf
::
<Limit GET POST OPTIONS>
Order allow,deny
Allow from all
Deny from 192.168.10.10 --阻擋此 IP 的連線
</Limit>
Apache 認證 ( 需輸入帳號密碼 )
在家目錄的 www 之下建立 .htaccess
$nano .htaccess
AuthName "Protect by .htaccess"
AuthType BasicAuthUserFile /home/student/apache.passwd --紀錄帳號密碼的地方
Require valid-user
$chmod +x .htaccess
執行
$htpasswd -c ~/apache.passwd student
然後輸入 2 次密碼
~/apache.passwd : 紀錄帳號密碼的地方
student : 網頁登入的帳號
到網頁連線 http://192.168.1.10/~student/ 時,就會要求輸入剛剛設定的帳號密碼
沒有留言:
張貼留言