This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

wildcard ssl certificate
#1
wildcard ssl certificate
Hi guys, I am planning on installing a wildcard ssl certificate for *.project.com I am looking at the documentation below,

http://docs.sentora.org/?node=64

I am running centos 7.1, 

Do you guys have any insights on how to proceed ? Is that documentation all I need ?
I also need to force ssl (basically never be on http) how would I go about that ?

Thanks so much
Reply
Thanks given by:
#2
RE: wildcard ssl certificate
You could just use this module to automatically make the changes for you: http://forums.sentora.org/showthread.php?tid=2001

About he redirect:
This is the old way of doing things using a .htaccess file:

Code:
RewriteEngine On
RewriteCond %{HTTPS} !on
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

And I guess the new, preferred method in httpd-vhosts.conf is:

Code:
<VirtualHost *:80>
   ServerName www.example.com
   Redirect / https://www.example.com/
</VirtualHost>

<VirtualHost *:443>
   ServerName www.example.com
   # ... SSL configuration goes here
</VirtualHost>
Although I am not sure how to do the preferred method properly...
-TGates - Project Council

SEARCH the Forums or read the DOCUMENTATION before posting!
Support Sentora and Donate: HERE

Find my support or modules useful? Donate to TGates HERE
Developers and code testers needed!
Contact TGates for more information
Reply
Thanks given by:


Possibly Related Threads…
Thread Author Replies Views Last Post
https without certificate redirects to panel iraqiboy90 10 19 ,745 02-28-2021, 11:20 AM
Last Post: iraqiboy90
How To Add Letsencrypt SSL certificate To Domain Centos 7 franselect 1 4 ,155 07-04-2020, 02:55 AM
Last Post: Feilding Weather
Cloudflare Origin Certificate sanga62 2 5 ,923 08-27-2019, 06:22 AM
Last Post: Me.B

Forum Jump:


Users browsing this thread: 1 Guest(s)