levkin.ca/deploy/nginx-levkin.conf
ilia 6a571de240 Add production www layout for levkin.ca hosting.
- build:www maps / to spec and /folders to stack-folder
- Umami tracking via stats.levkin.ca
- nginx deploy config for site LXC

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-22 21:57:15 -04:00

16 lines
295 B
Plaintext

server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
root /var/www/levkin/www;
index index.html;
location /folders/ {
try_files $uri $uri/ /folders/index.html;
}
location / {
try_files $uri $uri/ /index.html;
}
}