当前位置:首页 > 服务器技术 > apache

Apache使用Tips

一、多站点配置:

1.打开httpd.conf,设置启用虚拟目录:


    options FollowSymLinks
    AllowOverride all
    Allow from all
    #Require all denied


2.指定虚拟目录位置:

Include conf/extra/httpd-vhosts.conf,

3.修改<VirtualHost *:80>节点

<VirtualHost *:80>
        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

<Directory "/var/www/cgi-bin">
    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教程有兴趣的朋友有所帮助。


【说明】本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!