add: nginx

This commit is contained in:
eneller
2023-09-28 12:41:30 +02:00
parent 2f73dbb0ba
commit 4cc1ef4bae
2 changed files with 9 additions and 0 deletions

7
nginx/auth-basic.conf Normal file
View File

@@ -0,0 +1,7 @@
server {
server_name example.com;
auth_basic "Log in to continue:" ;
auth_basic_user_file /etc/nginx/myusers ;
location / {
}
}