Apache使用Tips
程序员文章站
2022-06-17 20:10:55
...
一、多站点配置:
1.打开httpd.conf,设置启用虚拟目录:
options FollowSymLinks AllowOverride all Allow from all #Require all denied
2.指定虚拟目录位置:
Include conf/extra/httpd-vhosts.conf,
3.修改
ServerAdmin webmaster@dummy-host.example.com DocumentRoot "/var/www/cloud_whirlpool_china" ServerName cloud.whirlpool-china.com ServerAlias cloud.whirlpool-china.com ErrorLog "logs/cloud.whirlpool-china.com-error_log" CustomLog "logs/cloud.whirlpool-china.com-access_log" common
也可以把VirtualHost直接配置在httpd.conf文件里。二、远程访问权限设置:
1.设置防火墙
2.修改配置文件:
/etc/httpd/conf/httpd.conf
AllowOverride None Options None Order allow,deny Allow from all 三、常用命令
/bin/systemctl start httpd.service #启动 /bin/systemctl restart httpd.service #重启 /bin/systemctl status httpd.service #查看状态以上就介绍了Apache使用Tips,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。