Difference between revisions of "Private Label SSL"

From Beds24 Wiki
Jump to navigation Jump to search
(Created page with "Category:How to Category:Booking_Page This page explains how to setup your own domain name with a SSL certificate Showing the booking page securely requires using an...")
 
Line 5: Line 5:
 
Beds24.com has a certificate but if you use your own domain with our certificate the browser will show a warning message.
 
Beds24.com has a certificate but if you use your own domain with our certificate the browser will show a warning message.
  
We will setup a certificate for you on our servers for a fee.  
+
We can purchase and install a certificate, provide you with a private ip address and a reverse proxy server on our servers for a fee.  
You can also do this yourself on your own server, doing so requires advanced server knowledge and the ability to setup a reverse proxy server.
+
 
 +
It is possible to do this yourself on your own server.
 
We cannot provide support for any work on your server.
 
We cannot provide support for any work on your server.
  
 
  You will need root access to a server with a dedicated ip address, in principle a small virtual server should be adequate.
 
  You will need root access to a server with a dedicated ip address, in principle a small virtual server should be adequate.
  
1) Purchase an ssl certificate for your domain or sub domain name and install it on your web server.
+
1) Setup a LAMP server for your domain.
 +
 
 +
2) Purchase an ssl certificate for your domain.
 +
 
 +
3) Setup apache to serve your domain using https:
  
2) Setup apache to work as a proxy using the following.
+
4) Setup apache to work as a reverse proxy using the following configuration.
  
 
   # We're not an open proxy
 
   # We're not an open proxy

Revision as of 16:02, 21 November 2014

This page explains how to setup your own domain name with a SSL certificate

Showing the booking page securely requires using an SSL certificate for the secure https protocol. Beds24.com has a certificate but if you use your own domain with our certificate the browser will show a warning message.

We can purchase and install a certificate, provide you with a private ip address and a reverse proxy server on our servers for a fee.

It is possible to do this yourself on your own server. We cannot provide support for any work on your server.

You will need root access to a server with a dedicated ip address, in principle a small virtual server should be adequate.

1) Setup a LAMP server for your domain.

2) Purchase an ssl certificate for your domain.

3) Setup apache to serve your domain using https:

4) Setup apache to work as a reverse proxy using the following configuration.

 # 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://booking.beds24.com/
 ProxyPassReverse / https://booking.beds24.com/