繁体   English   中英

Centos OS https 显示 apache2 默认页面

[英]Centos OS https shows apache2 default page

我正在 centos 操作系统上设置我的项目,我已经安装了我的 ssl 证书并更新了我的 ssl.conf。 My project is accessible using http://test.com but when i try to access https://test.com , i can see the site is secure, but it displays the default apache in page. 尽管我已经在我的 443 虚拟主机中指定了目录和文档根目录。 我是否有步骤或错误,任何建议或有用的链接将不胜感激。

我的代码如下所示:

NameVirtualHost *:80
NameVirtualHost *:443

<VirtualHost *:80>
DocumentRoot "/var/www/html/strategy"
ServerName test.com/
ServerAlias www.test.com
<Directory "/var/www/html/strategy">
RewriteEngine on

# if (HTTP_ACCESS.contains('text/html') && file_not_exists(REQUEST_FILENAME))
    RewriteCond %{HTTP_ACCEPT} text/html
    RewriteCond %{REQUEST_FILENAME} !-f
        RewriteRule ^ index.html [last]

    # Any ressources loaded by index.html should behave correctly (i.e: Return 404 if missing)
    RewriteRule ^ - [last]

    Options Indexes FollowSymLinks
    Options Indexes FollowSymLinks
    AllowOverride None

    Order allow,deny
    Allow from all

</Directory>
</VirtualHost>


<VirtualHost *:443>
     ServerAdmin info@stratex.com
     ServerName www.test.com
     DocumentRoot "/var/www/html/strategy"

    <Directory "/var/www/html/strategy">
        DirectoryIndex index.html 
    Options FollowSymLinks
    AllowOverride All
    Require all granted
    </Directory>

     SSLEngine On
     SSLCertificateFile /home/mydir/certificates/public-cert.pem
     SSLCertificateKeyFile /home/mydir/certificates/priv-key.pem
     
</VirtualHost>

由于我有一个 ssl.conf 文件,我从 httpd.conf 文件中删除了端口 443 的 conf 文件,并在 ssl.conf 文件中用端口 443 更新了虚拟主机,这些详细信息和我的应用程序运行良好。

<VirtualHost *:443>
     ServerAdmin info@stratex.com
     ServerName www.test.com
     DocumentRoot "/var/www/html/strategy"

    <Directory "/var/www/html/strategy">
        DirectoryIndex index.html 
    Options FollowSymLinks
    AllowOverride All
    Require all granted
    </Directory>

     SSLEngine On
     SSLCertificateFile /home/mydir/certificates/public-cert.pem
     SSLCertificateKeyFile /home/mydir/certificates/priv-key.pem
     
</VirtualHost>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM