Files
lingonpaj-site/default.conf
T
2018-09-21 21:15:19 +02:00

18 lines
357 B
Plaintext

server {
listen 80;
server_name localhost;
access_log /log/access.log combined;
error_log /log/error.log error;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}