traefik/nginx.conf.tmpl

18 lines
219 B
Cheetah

user www-data;
events {
worker_connections 768;
}
http {
listen 80;
server_name localhost;
error_page 404 /404.html;
location / {
root /usr/share/nginx/error-pages;
internal;
}
}