Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ngix を使用して、site.com/logger のようなサイト パスを保護する必要があります。どうすれば正しくできますか?ベストプラクティスは何ですか?
パスワード保護か何か?
location ^~ /path-to-dir {deny all}
また
location /path-to-dir { auth_basic "closed site"; auth_basic_user_file /full-path-to-htpasswd; }