Other ways to get https?

j0sh

Will someone please explain the meaning of life?
Apr 27, 2012
167
25
how would i go about getting HTTPS for my hotel without using cloudflare? any other CDN services?
 

Data

Posting Freak
May 19, 2013
593
97
You don't have to have a cdn to use a SSL certificate, you can get HTTP Proxies and setup an SSL certificate with them.(Or even just set them up directly with your server).
 

j0sh

Will someone please explain the meaning of life?
Apr 27, 2012
167
25
You don't have to have a cdn to use a SSL certificate, you can get HTTP Proxies and setup an SSL certificate with them.(Or even just set them up directly with your server).
Setting it up directly to my server= ass holes booting me.
Using http proxy= everyone having the same ip (cant ip ban anyone)
 

Data

Posting Freak
May 19, 2013
593
97
Setting it up directly to my server= ass holes booting me.
Using http proxy= everyone having the same ip (cant ip ban anyone)
I am sure it's todo with the set header, needing to be changed to another type(check below).

Code:
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
Or in your code try do it by $_SERVER['HTTP_X_REAL_IP'].

I am working on my own CDN scripts at the moment, will probably work on getting SSL!
 
Last edited:

Users who are viewing this thread

Top