Apache-2.2

Cent OS 上的 apache 在 https 上打開預設頁面

  • February 28, 2020

我是 Apache 和 SSL 及其配置的新手。我已獲得 VeriSign 證書來保護我的網站。我有公共、私人和 ca_intermediate 證書文件。我已經配置ssl.conf如下:

VirtualHost _default_:443>
DocumentRoot /var/www/mydomain.com/web/
ServerName mydomain.com:443
ServerAlias www.mydomain.com 
# Use separate log files for the SSL virtual host; note that LogLevel
# is not inherited from httpd.conf.
ErrorLog logs/ssl_error_log
TransferLog logs/ssl_access_log
LogLevel warn

#   SSL Engine Switch:
#   Enable/Disable SSL for this virtual host.
SSLEngine on

問題是當我使用www.mydoamin.comHTTP 訪問時它工作正常,但是當我使用 HTTPS 訪問時它只是打開預設的 Apache 頁面,但帶有綠色 HTTPS 掛鎖,這意味著我的證書安裝正確。我怎樣才能擺脫這種情況。

編輯 輸出apachectl -S

-bash-3.2# apachectl -S
[Mon Aug 27 10:20:19 2012] [warn] NameVirtualHost 82.56.29.189:80 has no VirtualHosts
[Mon Aug 27 10:20:19 2012] [warn] NameVirtualHost 82.56.29.189:443 has no VirtualHosts
VirtualHost configuration:
wildcard NameVirtualHosts and _default_ servers:
_default_:8081         localhost.localdomain (/etc/httpd/conf/sites-enabled/000-apps.vhost:10)
*:8080                 is a NameVirtualHost
        default server localhost.localdomain (/etc/httpd/conf/sites-enabled/000-ispconfig.vhost:10)
        port 8080 namevhost localhost.localdomain (/etc/httpd/conf/sites-enabled/000-ispconfig.vhost:10)
*:443                  is a NameVirtualHost
        default server mydomain.com (/etc/httpd/conf.d/ssl.conf:81)
        port 443 namevhost mydomain.com (/etc/httpd/conf.d/ssl.conf:81)
*:80                   is a NameVirtualHost
        default server app.mydomain.com (/etc/httpd/conf/sites-enabled/100-app.mydomain.com.vhost:7)
        port 80 namevhost app.mydomain.com (/etc/httpd/conf/sites-enabled/100-app.mydomain.com.vhost:7)
        port 80 namevhost mydomain.com (/etc/httpd/conf/sites-enabled/100-mydomain.com.vhost:7)
Syntax OK

添加目錄標籤,我的網路文件所在的位置。解決了這個問題。它現在工作正常。

引用自:https://serverfault.com/questions/420801