Heim  >  Artikel  >  Backend-Entwicklung  >  Apache使用Tips

Apache使用Tips

WBOY
WBOYOriginal
2016-08-08 09:31:251207Durchsuche

一、多站点配置:

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

<directory></directory>
    options FollowSymLinks
    AllowOverride all
    Allow from all
    #Require all denied


2.指定虚拟目录位置:

Include conf/extra/httpd-vhosts.conf,

3.修改节点

<pre name="code" class="html"><virtualhost>
        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> 


也可以把VirtualHost直接配置在httpd.conf文件里。

二、远程访问权限设置:

1.设置防火墙

2.修改配置文件:

/etc/httpd/conf/httpd.conf

<directory>
    AllowOverride None
    Options None
    Order allow,deny
    Allow from all
</directory>

三、常用命令

/bin/systemctl start httpd.service     #启动
/bin/systemctl restart httpd.service   #重启
/bin/systemctl status httpd.service    #查看状态

以上就介绍了Apache使用Tips,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn