Problem with Tracking Domain #2897
-
Hi, I created a Tracking Domain for my postal server following this procedure: |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 1 reply
-
I expect the grey SSL Enabled is not relevant any more, are you definitely on the latest Postal version? You should be handling the certificate yourself in caddy (or nginx or whatever is managing the web hosts in your environment). |
Beta Was this translation helpful? Give feedback.
-
Actually, I'm using Postal 3.3.2. If I'm not wrong when I set up the system he created the certificates for postal.mydomain.com by itself. I found this post: #1350 I setup it on an external nginx server, using proxy_ssl_verify off: server {
} certificates on this server click. are working but It shows: so the problem is https://track.postal.. I also tried with proxy_pass http://track.postal.; The DNS section of postal.yml file is: Specify the DNS records that you have configured. Refer to the documentation athttps://github.com/atech/postal/wiki/Domains-&-DNS-Configuration for furtherinformation about these.mx_records: and all these records are point to the IP server of postal. |
Beta Was this translation helpful? Give feedback.
-
I was able to with this /opt/postal/config/Caddyfile file: postal.mydomain.com { track.mydomain.com { click.mydomain.com { Thanks |
Beta Was this translation helpful? Give feedback.
-
@willpower232 Hi ... is there a way to have one universal track domain? Currently you must create a tracking domain to each domain if you want the link to be tracked. I would like to have 1 default tracker appended for all domain? Possible? |
Beta Was this translation helpful? Give feedback.
I was able to with this /opt/postal/config/Caddyfile file:
postal.mydomain.com {
reverse_proxy 127.0.0.1:5000
}
track.mydomain.com {
reverse_proxy 127.0.0.1:5000 {
header_up X-Postal-Track-Host "1"
}
}
click.mydomain.com {
reverse_proxy 127.0.0.1:5000 {
header_up X-Postal-Track-Host "1"
}
}
Thanks