标签: security nginx
我需要使用ngix保护site.com/logger等站点路径。我该如何正确地做到这一点?什么是最佳实践?
密码保护还是其他什么?
答案 0 :(得分:0)
location ^~ /path-to-dir {deny all}
或
location /path-to-dir { auth_basic "closed site"; auth_basic_user_file /full-path-to-htpasswd; }