nginx and other stuff

This commit is contained in:
2024-06-27 20:50:58 +02:00
commit 3c831d5985
19 changed files with 1886 additions and 0 deletions

12
nginx/default.conf Normal file
View File

@@ -0,0 +1,12 @@
server {
listen 80;
location = /qr { # Exact match for /qr
proxy_pass http://backend:3000/qr;
}
location / {
root /usr/share/nginx/html;
index index.html;
}
}