您好,登錄后才能下訂單哦!
本篇文章為大家展示了怎么在Nginx中通過配置Basic Auth實現登錄認證,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
1. 確定你安裝了httpd-tools
yum install httpd-tools -y
2. 創建授權用戶和密碼
htpasswd -c -d /usr/local/openresty/nginx/conf/pass_file magina
這個配置文件存放路徑可以隨意指定, 這里我指定的是nginx配置文件目錄, 其中magina是指允許登錄的用戶名, 這個可以自定義
3. 配置Nginx
大致配置如下:
server { listen 80; server_name res.yinnote.com; auth_basic "登錄認證"; auth_basic_user_file /usr/local/openresty/nginx/conf/pass_file; autoindex on; autoindex_exact_size on; autoindex_localtime on; root /mnt/html/resource; index index.html index.php; }
其中 auth_basic 和 auth_basic_user_file 是認證的配置, 注意密碼文件的路徑一定是上面生成的
4. 使用
# 瀏覽器中使用 直接在瀏覽器中輸入地址, 會彈出用戶密碼輸入框, 輸入即可訪問 # 使用 wget wget --http-user=magina --http-passwd=123456 http://res.yinnote.com/xxx.zip # 使用 curl curl -u magina:123456 -O http://res.yinnote.com/xxx.zip
上述內容就是怎么在Nginx中通過配置Basic Auth實現登錄認證,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。