Files
infra/nginx/auth-basic.conf
2023-09-28 12:41:30 +02:00

8 lines
168 B
Plaintext

server {
server_name example.com;
auth_basic "Log in to continue:" ;
auth_basic_user_file /etc/nginx/myusers ;
location / {
}
}