Hi everyone:
I was enabling https to my dataverse, I have received private key, cert file, chain file from my authority, and I have configured it in ssl.confss like this:
````````````````````````````````````````````````````````````
DocumentRoot "/var/www/html" ServerName
dataverse.shanghai.nyu.edu:443 SSLCertificateFile /etc/pki/tls/certs/dataverse_shanghai_nyu_edu.crt
SSLCertificateKeyFile /etc/pki/tls/certs/dataverse.shanghai.nyu.edu_Private.key
SSLCertificateChainFile /etc/pki/tls/certs/dataverse_shanghai_nyu_edu.cer
Listen 443 https
```````````````````````````````````````````````````````````````
Aslo I included ssl.conf in httpd.conf, and then I reatart apache, and then check its status:
`````````````````````````````````````````````````````````````````````````````````````````````````
httpd.service - The Apache HTTP Server
Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled; vendor preset: disabled)
Active: active (running) since Tue 2022-03-22 23:36:59 EDT; 5s ago
Docs: man:httpd.service(8)
Process: 1438596 ExecReload=/usr/sbin/httpd $OPTIONS -k graceful (code=exited, status=0/SUCCESS)
Main PID: 1475763 (httpd)
Status: "Started, listening on: port 443, port 80"
Tasks: 102 (limit: 49500)
Memory: 25.9M
CGroup: /system.slice/httpd.service
├─1475763 /usr/sbin/httpd -DFOREGROUND
├─1475765 /usr/sbin/httpd -DFOREGROUND
├─1475766 /usr/sbin/httpd -DFOREGROUND
├─1475767 /usr/sbin/httpd -DFOREGROUND
└─1475768 /usr/sbin/httpd -DFOREGROUND
Mar 22 23:36:59 localhost.localdomain systemd[1]: Starting The Apache HTTP Server...
Mar 22 23:36:59 localhost.localdomain systemd[1]: Started The Apache HTTP Server.
Mar 22 23:36:59 localhost.localdomain httpd[1475763]: Server configured, listening on: port 443, port 80
`````````````````````````````````````````````````````````````````````````````
But when I tried to access my website, it still can not go over https, I referenced
Apache Doc but it didn't provide any useful information for me, I also referenced
IBM's doc and still not work, I have tried my best look through my config file and still didn't find my problem, can you have a look at my config file? If I have any problems, please let me know:)
By the way: my ssl.conf is in "conf.d" directory
Thank you much all your kind heart!