Create token_server.conf

This commit is contained in:
tcely 2025-05-16 19:59:09 -04:00 committed by GitHub
parent 12aa6b4134
commit 4abd768ba8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,15 @@
upstream token_server {
server 127.0.0.2:4416 down;
}
server {
# Ports
listen 4416;
listen [::]:4416;
location / {
proxy_pass http://token_server;
proxy_redirect default;
}
}