blob: daf71d3e4d28c1f77a6fcf9b19c773b872e7e78d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
server {
listen 80;
listen [::]:80;
server_name bnewbold.net www.bnewbold.net next.bnewbold.net;
access_log /var/log/nginx/bnewnet.access.log;
error_log /var/log/nginx/bnewnet.error.log;
location / {
root /srv/http/bnewbold.net/www/;
index index.html index.htm;
}
# Temporary mirror of old photos stuff
location /photos/ {
root /srv/http/bnewbold.net/adelie_backup/;
index index.html index.htm;
}
}
|