Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hey!
As far as I can tell from the error that you’ve shared, there are requests being made with the “Upgrade-Insecure-Requests” header. This usually means that the request is being forced to upgrade from HTTP to HTTPS.
What you could do here, is to disable the HTTPS support as this is running behind a proxy.
So based on the official documentation, HTTPS support is automatically enabled. If you run the Mercure hub behind a reverse proxy, you usually want to use unencrypted HTTP. This can be done like that:
docker run \
-e SERVER_NAME=':80' \
-e MERCURE_PUBLISHER_JWT_KEY='!ChangeThisMercureHubJWTSecretKey!' \
-e MERCURE_SUBSCRIBER_JWT_KEY='!ChangeThisMercureHubJWTSecretKey!' \
-p 80:80 \
dunglas/mercure
In the context of the App Platform you would need to make sure that you’ve defined the SERVER_NAME=':80' env variable, and that you’ve also specified port 80 as your service port.
Let me know if this fixes the error from the logs that you’ve shared!
- Bobby