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
The Love Server mentioned in the README needs to be remotely accessible it seems.
Therefore simply passing the docker internal domain and port wont work as the browser will try to reach the domain which is unaccessible.
Therefore it should be declared inside the docker compose similar to the other remotely accessible services:
LOVE_ENDPOINT=${NGINX_HTTP_SCHEME}://${SERVER_ADDRESS}/_love
And there should also be a nginx rule supporting this similar to:
The Love Server mentioned in the README needs to be remotely accessible it seems.
Therefore simply passing the docker internal domain and port wont work as the browser will try to reach the domain which is unaccessible.
Therefore it should be declared inside the docker compose similar to the other remotely accessible services:
LOVE_ENDPOINT=${NGINX_HTTP_SCHEME}://${SERVER_ADDRESS}/_love
And there should also be a nginx rule supporting this similar to:
location /_love{
proxy_set_header Host $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;
^^
The text was updated successfully, but these errors were encountered: