Failed to fetch the page
Failed to fetch the page
I have an issue with proton. I hosted the software on my own homeserver with portainer.
Often it comes the failure "TypeError: NetworkError when attempting to fetch resource."
or
in photon. It doesnt work in Firefox (Mac) or Safari (iOS, MacOS).
The instance is not the problem. It works with voyager.
You're viewing a single thread.
Do you have it running under HTTPS? Since all of the API calls are HTTPS, you'll need to run it either under localhost or through a reverse proxy with SSL enabled.
Also, did you set
PUBLIC_INSTANCE_URL
environment variable to the domain of your home instance?e.g.
PUBLIC_INSTANCE_URL=discuss.tchncs.de
If you open your browser console, it should show some errors to indicate the problem.
4 0 ReplyOn my Homeserver runs an NGINX Proxy Manager. There is HTTPS activated. The proxy use HTTP to connect to the local Docker Container.
Internet --> NGINX Proxy Manager --> local Docker Container
The Instance discuss.tchncs.de is not mine, but I have set the enviroment "PUBLIC_INSTANCE_URL=discuss.tchncs.de".
The errors are paste here
3 0 ReplyErrors are definitely indicating CORS is the issue. Specifically, that the
Access-Control-Allow-Origin
header is missing:Grund: CORS-Kopfzeile 'Access-Control-Allow-Origin' fehlt). Statuscode: 503.
Are you perhaps (accidentally) stripping out that header in your NPM config? Or do you have a browser extension that might be doing so?
2 0 Reply
Photon can make requests through http, but it has to be manually specified (
PUBLIC_INSTANCE_URL=http://discuss.tchns.de
)2 0 Reply