fullstack.web/default.conf

12 lines
219 B
Plaintext
Raw Normal View History

2023-08-09 05:57:49 +00:00
server {
listen 80;
location / {
root /app;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}