Here is how to connect Verbolia pages to your nginx application.
Notes: Always replace “client.com” with your hostname, “client.backend.verbolia.com” with the given verbolia hostname and “/path_to_verbolia/” with the agreed routed url pattern.
Append your nginx virtual host configuration (usually /etc/nginx/sites-available/)
- Add a proxy_pass section:
location /path_to_verbolia/ { resolver 1.1.1.1 ipv6=off valid=3600s; #needed to avoid nginx caching the ip address proxy_ssl_server_name on; #needed to handle SNI certificates proxy_set_header Host client.backend.verbolia.com; proxy_pass https://client.backend.verbolia.com; }
- Restart nginx