-
Hey people. Since some time my https://photo.feldspaten.org instance is broken, probably due to the v5 upgrade. I run lychee as a However, if I check the resource URLs on https://photo.feldspaten.org then they all point to the container ip I check the env variables within the container, and
The release notes state explicitly that starting from v5 the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 14 replies
-
You are mistaking Because you are using LycheeOrg/Lychee, you should have a |
Beta Was this translation helpful? Give feedback.
Yes, that was it! I needed to set the
Host
header in my nginx configuration:The important setting is the
Host
setting, theX-Forwarded-For
is not strictly required to work. So in addition to theAPP_URL
also theHost
HTTP header needs to be set correctly. This was not an issue in v4.I also needed to set
APP_FORCE_HTTPS=true
in the.env
settings but that's a different issue and might depend on your configuration.EDIT: I added
proxy_set_header X-Forward…