Context: This procedure uses the example for Apache httpd reverse proxy. Where the variables:
Sample reverse proxy configuration using httpd.conf# Sample for Apache httpd reverse proxy Listen 443 <VirtualHost *:443> SSLEngine on ProxyPreserveHost Off ServerAlias *.my-domain.com ProxyPass /onepart <ONEPART_URL> ProxyPassReverse /onepart <ONEPART_URL> RequestHeader set x-forwarded-port "443" RequestHeader set x-forwarded-proto "https" </VirtualHost> |