notes/docker/nginx.conf

10 lines
192 B
Nginx Configuration File
Raw Normal View History

2025-02-03 00:26:07 +10:30
server {
listen 80 default_server;
root "/usr/share/nginx/html";
location / {
auth_basic "Restricted";
auth_basic_user_file auth.htpasswd;
}
}