Ubuntu apache


如何让我的一个域名支持 Http & Https 协议,都是用同一个目录?

apache Ubuntu domian

小妹妹我有糖 11 years, 4 months ago

是不是这样。我也没试过,看了下我在用的配置。


ServerName example.com:443
DocumentRoot /var/www/html
...
SSL相关部分
...


ServerName example.com:80
DocumentRoot /var/www/html
...
其他apache配置
...

xxxxxxh answered 11 years, 4 months ago


 <VirtualHost *:443>
    ServerName example.com
    DocumentRoot /var/www/html
    ...
    SSL相关部分
    ...
</VirtualHost>
<VirtualHost *:80>
    ServerName example.com
    DocumentRoot /var/www/html
    ...
    其他apache配置
    ...
</VirtualHost>

油泼辣子酸汤面 answered 11 years, 4 months ago

Your Answer