Unable to establish SSL connection, how do I fix my SSL cert?

后端 未结 9 1031
醉话见心
醉话见心 2020-11-27 14:17

I\'m trying to wget to my own box, and it can\'t be an internal address in the wget (so says another developer).

When I wget, I get this:



        
9条回答
  •  鱼传尺愫
    2020-11-27 15:12

    I meet this same question. The port 443 wasn't open in Centos.

    Check the 443 port with the following command:

    sudo lsof -i tcp:443

    In the first line of /etc/httpd/conf.d/ssl.conf add this two lines:

    LoadModule ssl_module modules/mod_ssl.so
    Listen 443
    

提交回复
热议问题