ssl_error_bad_cert_domain при доступе к сайту по его IP-адресу по https

Я наконец получил свой сертификат, проверенный от доверенного CA. Теперь я отредактировал мой etc/httpd/conf.d/ssl.conf найти мой новый сертификат.

я уже включил ssl.conf в свой etc/httpd/conf/httpd.conf,

i have setup my virtual host.

ServerName www.myhost.com.ph:80
NameVirtualHost *:443
<VirtualHost *:443>
    ServerName www.myhost.com.ph
    DocumentRoot /home/host/public
    ServerAlias myhost.com.ph myhost.net
    DirectoryIndex index.html index.php

    <Directory "/home/host/public">
        AllowOverride FileInfo Limit Options Indexes
        Allow from all
        Options Indexes FollowSymLinks MultiViews
    </Directory>
    <Files ~ "^\.ht">
             Order allow,deny
             Deny from all
    </Files>
</VirtualHost>

and here's my ssl.conf file:

LoadModule ssl_module modules/mod_ssl.so
Listen 443
<VirtualHost _default_:443>
    ServerName www.myhost.com.ph
    SSLEngine on
    SSLCertificateFile /etc/pki/tls/certs/myhost.com.ph.crt
    SSLCertificateKeyFile /etc/pki/tls/private/www.myhost.com.ph.key
    SSLCertificateChainFile /etc/pki/tls/certs/gd_bundle.crt
</VirtualHost>

when i access my site in a web browser via my ip address ( https://125.x.xx.xxx/), i still Untrusted Connected ошибка. Error code: ssl_error_bad_cert_domain

Have I misconfigured my server setup? What are the other things I have to add/setup in my ssl and apache config? Пожалуйста помоги. Заранее спасибо.

1 ответ

Вам нужно получить доступ к части https сайта через доменное имя, для которого у вас есть подписанный сертификат, иначе вы всегда получите такую ​​ошибку.

Другие вопросы по тегам