website/custom_nginx.conf
Carlos Sousa dcaa9eaf2a
Add tips and quotes pages (#6)
* add basic routing, multi-page support

* update package versions

* add PoC for Quotes handling

* update quotes ux

* add PoC for life tips

* add custom nginx config file

* update docker build

* update first run process

* add life tips and quotes components and pages

---------

Co-authored-by: Carlos Sousa <me@carlossousa.tech>
2024-03-22 17:06:05 +01:00

19 lines
369 B
Plaintext

server {
listen 80;
listen [::]:80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri /index.html;
}
#error_page 404 /404.html;
#error_page 500 502 503 504 /50x.html;
#location = /50x.html {
# root /usr/share/nginx/html;
#}
}