Hi,
I have installed a new Moodle 3.6 on a Windows server with Apache and PHP 7
Moodle Version 3.6.2+ Build : 20190124
I want to setup a wildcard SSL certificate and make sure that https is used to ensure secure access.
I have enabled NAT rules so the site can be accessed externally.
I have enabled the following lines in httpd.conf
LoadModule ssl_module modules/mod_ssl.so
Include conf/extra/httpd-ssl.conf
LoadModule socache_shmcb_module modules/mod_socache_shmcb.so
I have also edited the http-ssl.conf in the apache/conf/etc folder..
<VirtualHost _default_:443>
ServerName subsite.moodlesite.ac.uk:443
DocumentRoot "C:/Moodle3/server/moodle"
SSLEngine on
SSLCertificateFile "c:/moodle3/server/certificate/cert1.crt"
SSLCertificateChainFile "c:/moodle3/server/certificate/certchain.crt"
SSLCertificateKeyFile "c:/moodle3/server/certificate/certkeyfile.key"
ServerAdmin admin@moodlesite.ac.uk
ErrorLog "C:/Moodle3/server/apache/logs/error.log"
TransferLog "C:/Moodle3/server/apache/logs/access.log"
When I access https://subsite.moodlesite.ac.uk in chrome the informational message is "Your connection to the site is not fully secure. Attackers might be able to see the images you are looking at on this site and trick you by modifying them"
When I access the https://subsite.moodlesite.ac.uk in IE it does not show the site as being encrypted.
Please can you advise how I can resolve this SSL issue to get the certificate working so I can ensure only https is used on our new moodle site ?
Many Thanks in advance for any advice you can give me.
CBT72