vault backup: 2024-10-17 14:49:30

This commit is contained in:
Keannu Christian Bernasol 2024-10-17 14:49:30 +08:00
parent 72885882b8
commit 1310639bc5
5 changed files with 55 additions and 7 deletions

13
nginx/nginx.conf Normal file
View file

@ -0,0 +1,13 @@
server {
listen 80;
sendfile on;
default_type application/octet-stream;
server_name angularfrontend.lemnsea-fab4664b.westus3.azurecontainerapps.io;
gzip on;
root /usr/share/nginx/html/dist/simpledmca-web/browser;
location / {
try_files $uri $uri/ /index.html =404;
}
}