Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/security/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Security 不同类型的SSL证书何时重要?_Security_Ssl_Ssl Certificate - Fatal编程技术网

Security 不同类型的SSL证书何时重要?

Security 不同类型的SSL证书何时重要?,security,ssl,ssl-certificate,Security,Ssl,Ssl Certificate,我在GoDaddy提供的通配符SSL证书上拥有我的站点 我的客户是欧洲主要银行之一。从他们的网络内部,他们无法访问我的网站,因为他们得到了一个错误。但是,如果他们去,他们可以访问它 我将我的站点设置为同时接受http和https来测试这一点 因为他们可以访问,我认为这不是DNS问题,也不是代理服务器的问题 它可能与我从GoDaddy获得的通配符SSL证书有关吗 我注意到还有标准的SSL证书而不是通配符,以及SSL OV和SSL EV证书。这些会有所不同吗 这是Web服务器配置 <Virtu

我在GoDaddy提供的通配符SSL证书上拥有我的站点

我的客户是欧洲主要银行之一。从他们的网络内部,他们无法访问我的网站,因为他们得到了一个错误。但是,如果他们去,他们可以访问它

我将我的站点设置为同时接受http和https来测试这一点

因为他们可以访问,我认为这不是DNS问题,也不是代理服务器的问题

它可能与我从GoDaddy获得的通配符SSL证书有关吗

我注意到还有标准的SSL证书而不是通配符,以及SSL OV和SSL EV证书。这些会有所不同吗

这是Web服务器配置

<VirtualHost *:80>
    ServerName www.example.com
    ServerAlias example.com

    ProxyPass         / http://localhost:8092/
    ProxyPassReverse  / http://localhost:8092/

    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined

    LogLevel info

</VirtualHost>
<VirtualHost *:443>
    ServerName www.example.com
    ServerAlias example.com

    ProxyPass         / http://localhost:8092/
    ProxyPassReverse  / http://localhost:8092/

    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined

    SSLEngine on

    #   A self-signed (snakeoil) certificate can be created by installing
    #   the ssl-cert package. See
    #   /usr/share/doc/apache2.2-common/README.Debian.gz for more info.
    #   If both key and certificate are stored in the same file, only the
    #   SSLCertificateFile directive is needed.
    SSLCertificateFile    /etc/ssl/certs/example.com.crt
    SSLCertificateKeyFile /etc/ssl/private/example.key

    #   Server Certificate Chain:
    #   Point SSLCertificateChainFile at a file containing the
    #   concatenation of PEM encoded CA certificates which form the
    #   certificate chain for the server certificate. Alternatively
    #   the referenced file can be the same as SSLCertificateFile
    #   when the CA certificates are directly appended to the server
    #   certificate for convinience.
    SSLCertificateChainFile /etc/ssl/certs/gd_bundle.crt
</VirtualHost>

你能分享你网站的Web服务器配置吗?嗨,Jorge-当然,我能。你能告诉我你想看什么吗?我不太懂技术,所以我不确定“Web服务器配置”是什么意思:谢谢所谓Web服务器配置,我指的是将Web服务器软件(如apache或nginx)配置为处理启用SSL的流量的配置文件。或者您正在使用某种控制面板?此外,您可以尝试将您的网站地址放在此处:并检查是否存在任何可能的错误。我们是否可以停止使用“SSL”作为“SSL证书”的意思?没有。