2 months ago
The issue began yesterday, Mar 30.
I’m using app.tupai.ai as the main authentication server and publish.tupai.ai as the service portal. Requests to app.tupai.ai (through Nginx) are failing, and I’m unable to reproduce the issue locally. The error returned is:
Error 1000 – DNS points to prohibited IP
P/S I’m not sure if this is related to the following mention but sounds similar: https://station.railway.com/questions/503-error-2fa95090#36dn
Attachments
2 Replies
2 months ago
Too!
2 months ago
This issue was resolved by adding or updating the following proxy settings in my Nginx config for all proxied locations:
```
location /xxxx {
proxy_set_header X-Real-IP "";
proxy_set_header X-Forwarded-For "";
proxy_set_header CF-Connecting-IP "";
proxy_set_header CF-Ray "";
proxy_set_header CF-Visitor "";
}
```
I’ve tried restarting, redeploying, doing a fresh deployment (remove and recreate service), and even changing the subdomains for the affected and related services, but none of these resolved the issue. I suspect there may have been changes on Cloudflare’s side. Hope this helps anyone who runs into the same problem.
Status changed to Awaiting Railway Response Railway • about 2 months ago
Status changed to Solved sam-a • about 1 month ago