feat: Introduce Nginx configuration and Vultr DNS record creation scripts for btlabel.app and btlabel subdomains.

This commit is contained in:
Wartana
2026-02-28 17:17:09 +08:00
parent 0c15ea7b46
commit b508821293
3 changed files with 66 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
server {
listen 80;
server_name btlabel.app.oncloud.my.id;
location / {
root /home/wartana/myApp/btlabel;
index index.html;
try_files $uri $uri/ =404;
}
}