hello everyone, so I am working on a new project and I am using nginx proxy manager to manage SSL certificates and to redirect requests to containers, but when making a request to get locale the response returns nginx internal ip every time so I think that's a problem first because of the request limitation and second if we want to customize responses according to user location. is there any solution for that?
Check this https://discord.com/channels/564160730845151244/1109402256949903411/1110007371423551558
What it means that you'll need to add these two lines to your docker-compose.yml
in the Traefik service
traefik:
command:
...
- --entryPoints.appwrite_web.forwardedHeaders.trustedIPs=172.18.0.3
- --entryPoints.appwrite_websecure.forwardedHeaders.trustedIPs=172.18.0.3
Recommended threads
- Having issues with login via CLI
``` ~/appwrite appwrite login --endpoint https://localhost/v1 --verbose ? Enter your email myvalidemai...
- Send Email Verification With REST
I am using REST to create a user on the server side after receiving form data from the client. After the account is successfully created i wanted to send the v...
- Use different email hosts for different ...
Hello, I have 2 projects and i want to be able to set up email templates in the projects. Both projects will have different email host configurations. I see ...