為了安全起見,部署的web內容不想讓別人看到,或為了增強安全性。
部署步驟:
首先利用apache的htpasswd功能產生一個使用者名稱和密碼:
htpasswd -c /usr/local/nginx/conf/test.pass test New password:123456
2.在nginx設定檔location中加入如下兩行:
location / { root /usr/share; index index.php index.html index.htm; auth_basic "Authorized users only"; auth_basic_user_file conf/test.pass; }
2.在nginx設定檔location中加入如下兩行:
rrreee