首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > PowerDesigner >

Apache httpd 2.4.4 与老版本的差别

2013-07-08 
Apache httpd 2.4.4 与老版本的差异VirtualHost *:80? ? ServerAdmin webmaster@dummy-host2.example.co

Apache httpd 2.4.4 与老版本的差异

<VirtualHost *:80>

? ? ServerAdmin webmaster@dummy-host2.example.com

? ? DocumentRoot "/www/www.example.com"

? ? ServerName www.example.com

? ? ErrorLog "logs/www.example.com-error.log"

? ? CustomLog "logs/www.example.com-access.log" combined

?

? ? <Directory "/www/www.example.com">

? ? ? ?Options Indexes FollowSymLinks

? ? ? ?AllowOverride None

? ? ? ?Require all granted

? ? </Directory>

?

</VirtualHost>

?

Require all granted 替代老版本中的?Order allow,deny 与??Allow from all

?

?<Directory /var/www/>

? ? ? ?Options Indexes FollowSymLinks

? ? ? ?AllowOverride None

? ? ? ?Order allow,deny

? ? ? ?Allow from all

? ? ? ? </Directory>

?

热点排行