- 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>
16 lines
295 B
Plaintext
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;
|
|
}
|
|
}
|