Update server to wirk with NGINX proxy without funky workarounds #1

Merged
nathanwoodburn merged 3 commits from dev into main 2025-06-25 13:36:12 +10:00
Showing only changes of commit c78d5f5d63 - Show all commits

View File

@@ -84,12 +84,13 @@ To proxy Handshake domains to IPFS, you can use the following nginx configuratio
```nginx ```nginx
server { server {
listen 80; listen 80;
server_name ~^(?<domain>.+)$; server_name _; # Catch-all for all domains
location / { location / {
proxy_pass http://127.0.0.1:3000/$domain; proxy_pass http://127.0.0.1:3000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-Proto $scheme;