notes/docker/nginx.conf

9 lines
192 B
Nginx Configuration File

server {
listen 80 default_server;
root "/usr/share/nginx/html";
location / {
auth_basic "Restricted";
auth_basic_user_file auth.htpasswd;
}
}