ClickHouse/website/nginx/default.conf
2017-05-16 21:32:35 +03:00

18 lines
303 B
Plaintext

server {
listen 80;
listen [::]:80 default ipv6only=on;
root /usr/share/nginx/html;
index index.html index.htm;
server_name localhost;
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/www;
}
}