修改apache主配置文件
469 # Virtual hosts
470 Include conf/extra/httpd-vhosts.conf
将470行的注释去掉
<VirtualHost 192.168.0.3:80>
ServerAdmin [email protected]
DocumentRoot "/home/mnt"
ServerName www.mnt.com
ErrorLog "logs/mnt.com-error_log"
CustomLog "logs/mnt.com-access_log" common
<Directory "/home/mnt">
# Options Indexes FollowSymLlinks
# AllowOverride ALL
# Order allow,deny
# Allow from all
Require all granted
</Directory>
</VirtualHost>
时间: 2024-11-03 20:50:39