在特定子域上禁用SSL

时间:2018-09-23 06:57:01

标签: apache ssl-certificate subdomain

我有一个使用SSL的域名example.com。现在,我已经为该应用程序创建了一个测试站点,并托管在test.example.com中。但是,每当我尝试访问test.example.com时,我都会得到连接而不是私人错误。该子域也以某种方式使用SSL。

我试图将重定向规则添加到.htaccess和vhost文件中的http版本,但是不起作用。有解决办法吗?

这是默认的-ssl.conf文件:

    <IfModule mod_ssl.c>
            <VirtualHost *:443>
    ServerName example.com
    ServerAlias www.example.com
    ServerAdmin webmaster@localhost
            DocumentRoot /var/www/html/frontend
            DirectoryIndex index.html
     <Directory /var/www/html/frontend>
            Options Indexes FollowSymLinks MultiViews
            AllowOverride All
            Require all granted
        </Directory>
            #LogLevel info ssl:warn

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

                SSLCertificateFile      /etc/ssl/certfile.crt
                SSLCertificateKeyFile /etc/ssl/certkey.key
                SSLCertificateChainFile /etc/ssl/gd_bundle-g2-g1.crt
</VirtualHost>
</IfModule>

0 个答案:

没有答案