Private Label SSL: Difference between revisions
Jump to navigation
Jump to search
Markkinchin (talk | contribs) No edit summary |
Markkinchin (talk | contribs) No edit summary |
||
| Line 18: | Line 18: | ||
3) Setup apache to serve your domain using https: | 3) Setup apache to serve your domain using https: | ||
4) Setup apache to work as a reverse proxy using the following | 4) Setup apache to work as a reverse proxy using one of the following configurations. | ||
For the booking page. | |||
# We're not an open proxy | # We're not an open proxy | ||
| Line 30: | Line 32: | ||
ProxyPass / https://booking.beds24.com/ | ProxyPass / https://booking.beds24.com/ | ||
ProxyPassReverse / https://booking.beds24.com/ | ProxyPassReverse / https://booking.beds24.com/ | ||
For the control panel | |||
# We're not an open proxy | |||
ProxyRequests off | |||
# Proxying is available for anyone | |||
<Proxy *> | |||
Order deny,allow | |||
Allow from all | |||
</Proxy> | |||
# The site we're proxying | |||
ProxyPass / https://admin.beds24.com/ | |||
ProxyPassReverse / https://admin.beds24.com/ | |||