2014-02-26 137 views
1

我的問題類似於Password protect a specific URL,除了我試圖在Nginx而不是Apache中實現這一點。密碼保護在Nginx中的網址

請建議的方式來做到這一點。這是一個包含動態內容的網址,而不是文件。

+0

http://nginx.org/en/docs/http/ngx_http_auth_basic_module.html –

+0

這確實幫助謝謝@alexeyten如何爲單個URL做到這一點?不是整個網站。 – Chirag

回答

0

這應該工作。看看module找出passwd文件格式。基本上Apache的一個會很好。

location /protected/path { 
    auth_basic   "closed site"; 
    auth_basic_user_file conf/htpasswd; 
}