umbrel-apps/samourai-server/nginx/connect.conf
2022-05-01 01:49:07 +02:00

23 lines
456 B
Plaintext

# Connect UI Configuration
server {
listen 8081;
server_name _;
root /var/www/connect;
index index.html;
# Proxy pairing endpoint to dojo api
location /v2/support/pairing {
proxy_pass http://node:8080/support/pairing;
}
location /test/v2/support/pairing {
proxy_pass http://node:8080/support/pairing;
}
# Server Connect UI static files
location / {
try_files $uri $uri/ =404;
}
}