blob: 9c9ab7ec8e6226dd3109c26fedbbd924a5d244c5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
server {
listen 127.0.0.1:8089;
listen [::1]:8089;
server_name _;
root /srv/www/labunix/public;
index index.html;
access_log /var/log/nginx/labunix-i2p.access.log;
error_log /var/log/nginx/labunix-i2p.error.log;
location / {
try_files $uri $uri/ =404;
}
}
|