infrastructure/coreos-config/compose/01_errorpage/default.conf

14 lines
247 B
Plaintext

server {
listen 80;
server_name localhost;
error_page 404 /404.html;
# other error pages here:
# error_page 403 /403.html;
location / {
root /usr/share/nginx/error-pages;
internal;
}
}