You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
has anyone recommendation for running MQTTX as a docker image behind NGINX?
I'm having specifically issues with loading all the image resources.
The way I got around so far was by configuring the entry in the nginx.conf this way:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi everyone,
has anyone recommendation for running MQTTX as a docker image behind NGINX?
I'm having specifically issues with loading all the image resources.
The way I got around so far was by configuring the entry in the nginx.conf this way:
location /mqttx/ {
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
But it is still not loading all of the images.
Appreciate any help!
Beta Was this translation helpful? Give feedback.
All reactions