add admin.conf

This commit is contained in:
Trey t
2025-11-27 23:56:19 -06:00
parent 0be535663e
commit 8504e08b2e

11
nginx.conf.d/admin.conf Normal file
View File

@@ -0,0 +1,11 @@
location /admin {
proxy_pass http://127.0.0.1:3000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_cache_bypass $http_upgrade;
}