mirror of
https://github.com/zebrajr/website.git
synced 2025-12-06 00:19:54 +01:00
* 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>
19 lines
369 B
Plaintext
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;
|
|
#}
|
|
}
|