email Tracking is not working with NGINX Proxy Manager #1693
-
I am trying to set up click based email tracking using NGINx Proxy Manager as the frontend, however it has been failing miserably. DNS records : Error on tracked links : What am I doing wrong ? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I think that final screenshot means the header you added is not getting through to the application. I don't know enough about Nginx Proxy Manager to know why it wouldn't work. |
Beta Was this translation helpful? Give feedback.
-
Solved :
You need to add : This is all you need to add to get it working. |
Beta Was this translation helpful? Give feedback.
Solved :
add_header X-Postal-Track-Host 1;
adds a header downstream the proxy, that is, on the page returned by the reverse proxy to the browser.
You need to add :
proxy_set_header X-Postal-Track-Host 1;
adds the required header upstream, that is, to the request being proxied to the upstream/backed postal server.
This is all you need to add to get it working.