Reference
...
Selling tickets
Ticket sales flows
Custom domain
5min
ticketmatic supports custom domains for the ticket sales flows this allows you to use any domain, including a (sub)domain of the customer, for the web sales pages instead of the default apps ticketmatic com if your own domain is for example www mycustomdomain com , you could set up tickets mycustomdomain com or shop mycustomdomain com for the web sales widgets the set up of a domain requires technical know how from your internal it department ticketmatic cannot support in the actual implementation of the domain on your side setting up the custom domain in order to use a custom domain ( tickets mycustomdomain com ), you need to perform the following steps 1\ get an ssl certificate for the custom domain ticketmatic only allows https traffic, so you need to have a valid ssl certificate for the custom domain and set this up correctly 2\ setup a proxy on the custom domain to the ticketmatic servers you need to setup a proxy on the custom domain that redirects traffic to the ticketmatic servers this can be handled easily in the http server for example for nginx, you can use the following configuration nginx server { listen 443 ssl; server name tickets mycustomdomain com; \# proxy the custom domain to https //apps ticketmatic com location / { proxy set header host $host; proxy set header x real ip $remote addr; proxy set header x forwarded proto $scheme; proxy set header x forwarded for $proxy add x forwarded for; proxy pass https //apps ticketmatic com/; } } \# redirect all http traffic to https server { listen 80; server name tickets mycustomdomain com; add header strict transport security max age=15768000; rewrite ^( )$ https //$host$1 permanent; } when a user requests a web sales page on the custom domain, the request will be proxied to ticketmatic and the web sales page will be delivered to the user only the initial request will use the proxy all subsequent requests for assets and javascript calls to the backend will go directly to the ticketmatic servers without touching the custom domain this will keep the load on the custom domain to a minimum 3\ allow traffic from the custom domain in ticketmatic a ticketmatic account only allows traffic from domains that you explicitely specify go to the account parameters module https //apps ticketmatic com/#!/settings/accountparameters in the settings app add the custom domain to the allowed domains make sure to include the protocol allowed domains