![]() |
|
SSL issues - Printable Version +- Sentora Support Forums (https://senforums.mach-hosting.com) +-- Forum: Sentora Forum Archives (https://senforums.mach-hosting.com/forumdisplay.php?fid=5) +--- Forum: Sentora Public Support Forums v1.0.x (https://senforums.mach-hosting.com/forumdisplay.php?fid=32) +---- Forum: General Support Forum v1.0.x (https://senforums.mach-hosting.com/forumdisplay.php?fid=36) +---- Thread: SSL issues (/showthread.php?tid=2794) |
SSL issues - Nextus - 04-24-2016 ok. i installed sentora at my company. Everything is working fine. but now we need an ssl cert on one of our sites. i have certs already. i added them to the vhost override. ports are open. 80 and 443 but when i try to go to https:// it does not work. says connection refused on chrome. i did an internal port scan. all normal ports are showing except for 443. seems like the server is not responding to any 443 requests. running ubuntu 14.04 any assistance would be great. thanks for the software. RE: SSL issues - datatab - 04-24-2016 Did you have : Code: <VirtualHost *:443>
ServerAdmin zadmin@localhost
DocumentRoot "/var/sentora/hostdata/zadmin/public_html/[SOME_HOST]"
ServerName [SOME_HOST]
ErrorLog "/var/sentora/logs/sentora-error.log"
CustomLog "/var/sentora/logs/sentora-access.log" combined
CustomLog "/var/sentora/logs/sentora-bandwidth.log" common
AddType application/x-httpd-php .php
<Directory "/var/sentora/hostdata/zadmin/public_html/[SOME_HOST]">
Options +FollowSymLinks -Indexes
AllowOverride All
Require all granted
</Directory>
SSLEngine on
SSLCertificateFile /etc/apache2/ssl/[SOME_CRT]
SSLCertificateKeyFile /etc/apache2/ssl/[SOME_KEY]
SSLCACertificateFile /etc/apache2/ssl/[SOME_CRT_BUNDLE]
</VirtualHost>RE: SSL issues - Nextus - 04-24-2016 (04-24-2016, 08:00 PM)datatab Wrote: Did you have : The only thing I added to the vhost override was SSLEngine on SSLCertificateFile /etc/apache2/ssl/[SOME_CRT] SSLCertificateKeyFile /etc/apache2/ssl/[SOME_KEY] SSLCACertificateFile /etc/apache2/ssl/[SOME_CRT_BUNDLE] That's what was in the documentation. I have feeling that I missed something to tell apache to listen also on 443 The thing is, I need the site to listen on both 80 and 443. It is an online store. I can't expect customers to know to only go to https:// RE: SSL issues - MrKaKisen - 04-29-2016 What certs are you using? Let's Encrypt? RE: SSL issues - Me.B - 04-29-2016 Move to sentora as we fixed bugs since then. RE: SSL issues - wishmaster - 05-05-2016 (04-29-2016, 04:57 PM)Me.B Wrote: Move to sentora as we fixed bugs since then. Can you elaborate on your answer. because Im on 1.0.3 and still have a ssl problem because the server is not responding to 443 requests. RE: SSL issues - sknd - 05-05-2016 (04-24-2016, 04:58 AM)Nextus Wrote: ok. i installed sentora at my company. Everything is working fine. Follow this http://blog.arnas.web.id/?p=145 RE: SSL issues - wishmaster - 05-05-2016 (05-05-2016, 07:21 AM)sknd Wrote:(04-24-2016, 04:58 AM)Nextus Wrote: ok. i installed sentora at my company. Everything is working fine. Thanks for the reply. I tried the certificate manager from one of the users on this forum and this has worked for me. I did need to restart the server to get it working. I already have created the ssl certificates with letsencrypt. so my setup was already complete but my vhost file was not configured right. the certificate manager did the trick, but I did need to restart to make it work. |