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 回答