0

ngix を使用して、site.com/logger のようなサイト パスを保護する必要があります。どうすれば正しくできますか?ベストプラクティスは何ですか?

パスワード保護か何か?

4

1 に答える 1

0
location ^~ /path-to-dir {deny all}

また

location /path-to-dir {
auth_basic           "closed site";
auth_basic_user_file /full-path-to-htpasswd;
}
于 2013-08-15T16:50:31.367 に答える