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
If using this project behind an reverse proxy with HTTPS, there is an problem with the verification links (403 invalid signature).
The issue is caused, that the TrustProxies-Middleware do not have an value for proxies.
I'm not sure about laravel, maybe it can done with env-Variables.
For me I fixed it with an ConfigMap in Kubernetes, but a solution with an env-Variable would be the more elegant way.
The text was updated successfully, but these errors were encountered:
If this issue is the same as the one I'm receiving, which is linked to email verification. e.g.: "403 - Invalid Signature".
I'm by no means an expert at Laravel nor PHP but the following information is what I have gathered so far.
Then the issue seems to be invalid configured proxies inside the laravel application, as in them not being trusted.
Setup being something lie:
Dockerized project-management application
NGINX reverse proxy in front of the application.
A solution would be to either introduce a new environment variable for this, as Laravel doesn't provide one, or possibly allowing any url to be a proxy (maybe also just the app_url domain).
File in question being: app/Http/Middleware/TrustProxies.php#L8
If using this project behind an reverse proxy with HTTPS, there is an problem with the verification links (403 invalid signature).
The issue is caused, that the TrustProxies-Middleware do not have an value for proxies.
I'm not sure about laravel, maybe it can done with env-Variables.
For me I fixed it with an ConfigMap in Kubernetes, but a solution with an env-Variable would be the more elegant way.
The text was updated successfully, but these errors were encountered: