14 lines
318 B
Plaintext
Raw Normal View History

2022-11-14 16:02:40 +01:00
server {
listen ${VIRTUAL_PORT};
listen [::]:${VIRTUAL_PORT};
server_name ${VIRTUAL_HOST};
location / {
2022-11-19 14:44:58 +01:00
root /var/www/html;
2022-11-14 16:02:40 +01:00
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}