有時侯部分網站不想被別人看到,須要進行加密訪問,此時對nginx進行簡單配置便可
location / { root html; index index.html index.htm index index.jpg; auth_basic 'Restricted'; # 認證名稱,隨意填寫 auth_basic_user_file /htpasswd/passwd.db; # 認證的密碼文件,須要生產。 }
htpasswd -c /htpasswd/passwd.db test chmod 777 /htpasswd/passwd.db test /usr/local/nginx/sbin -s relaod