summaryrefslogtreecommitdiff
path: root/db.berowski.com
blob: 34ee2b10c23ec8f11cb11e0ca4c1c5ac75141b5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
server {
	listen 80 ;
	listen [::]:80 ;
	server_name db.berowski.com ;
	root /srv/db ;
	index index.html index.htm index.nginx-debian.html ;
	auth_basic "What's the Password" ;
	auth_basic_user_file /etc/nginx/myusers ;
	location / {
		try_files $uri $uri/ =404 ;
	}
}