Updates to build and pipelines

This commit is contained in:
2026-02-06 16:17:18 -03:00
parent 4bc96abf4a
commit bc01347635
9 changed files with 191 additions and 8 deletions

20
nginx/default.conf Normal file
View File

@@ -0,0 +1,20 @@
# Host-based routing: mifi.dev / www.mifi.dev → dev root, mifi.bio / www.mifi.bio → bio root
server {
listen 80 default_server;
server_name mifi.dev www.mifi.dev;
root /usr/share/nginx/html/dev;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}
server {
listen 80;
server_name mifi.bio www.mifi.bio;
root /usr/share/nginx/html/bio;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}