I created a windows server 2012 r2 VM, I installed wampserver 3.2 and I pointed the public IP address to a subdomain
I generated a ssl certificate successfully
I uncommented all ssl requirements on httpd.conf
LoadModule ssl_module modules/mod_ssl.so
Include conf/extra/httpd-ssl.conf
LoadModule socache_shmcb_module modules/mod_socache_shmcb.so
Include conf/extra/httpd-default.conf
I pointed to the certificate and the key and updated cipher and protocol and virtualhost in httpd-ssl.conf file
SSLCertificateFile "${SRVROOT}/conf/sapilog.gromab.com-chain.pem"
SSLCertificateKeyFile "${SRVROOT}/conf/sapilog.gromab.com-key.pem"
DocumentRoot "C:/wamp64/www/gestion"
ServerName sapilog.gromab.com
ServerAdmin admin@example.com
ErrorLog "${SRVROOT}/logs/error.log"
TransferLog "${SRVROOT}/logs/access.log"
SSLCipherSuite ECDH+AESGCM256:ECDH+CHACHA20:DH+AESGCM256:ECDH+AES256:DH+AES256:!aNULL:!MD5:!DSS
SSLProxyCipherSuite ECDH+AESGCM256:ECDH+CHACHA20:DH+AESGCM256:ECDH+AES256:DH+AES256:!aNULL:!MD5:!DSS
SSLProtocol all -SSLv3 -TLSv1 -TLSv1.1
SSLProxyProtocol all -SSLv3 -TLSv1 -TLSv1.1
but the https does not work on wampserver (http works fine [sapilog.gromab.com])
Any suggestions would be appreciated.
I generated a ssl certificate successfully
I uncommented all ssl requirements on httpd.conf
LoadModule ssl_module modules/mod_ssl.so
Include conf/extra/httpd-ssl.conf
LoadModule socache_shmcb_module modules/mod_socache_shmcb.so
Include conf/extra/httpd-default.conf
I pointed to the certificate and the key and updated cipher and protocol and virtualhost in httpd-ssl.conf file
SSLCertificateFile "${SRVROOT}/conf/sapilog.gromab.com-chain.pem"
SSLCertificateKeyFile "${SRVROOT}/conf/sapilog.gromab.com-key.pem"
DocumentRoot "C:/wamp64/www/gestion"
ServerName sapilog.gromab.com
ServerAdmin admin@example.com
ErrorLog "${SRVROOT}/logs/error.log"
TransferLog "${SRVROOT}/logs/access.log"
SSLCipherSuite ECDH+AESGCM256:ECDH+CHACHA20:DH+AESGCM256:ECDH+AES256:DH+AES256:!aNULL:!MD5:!DSS
SSLProxyCipherSuite ECDH+AESGCM256:ECDH+CHACHA20:DH+AESGCM256:ECDH+AES256:DH+AES256:!aNULL:!MD5:!DSS
SSLProtocol all -SSLv3 -TLSv1 -TLSv1.1
SSLProxyProtocol all -SSLv3 -TLSv1 -TLSv1.1
but the https does not work on wampserver (http works fine [sapilog.gromab.com])
Any suggestions would be appreciated.