feat: add nginx conf

This commit is contained in:
2026-03-01 15:16:59 +01:00
parent f2c4e95f6f
commit 266a467aa1
2 changed files with 10 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
server {
listen 443 ssl;
server_name git.netoik.io;
location / {
proxy_pass http://127.0.0.1:3000;
}
}