美文网首页
Ubuntu Apache2 配置文件理解

Ubuntu Apache2 配置文件理解

作者: Solar_zcl | 来源:发表于2017-05-26 11:23 被阅读0次

    Apache的主配置文件为apache2.conf

    位置在  /etc/apache2/

    <Direction></Direction>中修改目录访问权限

    web文件根目录在:

    /etc/apache2/sites-available/000-default.conf配置文件中修改

    修改配置文件后重启

    sudo /etc/init.d/apache2 restart

    /etc/apache2/port.conf文件中修改端口 ,默认为:  Listen 80

    设置多文件目录的方法:

    1.复制/etc/apache2/sites-available/000-default.conf中的配置到新的文件中

    如:

    sudo cp /etc/apache2/sites-available/000-default.conf /etc/apache2/sites-available/001-default.conf

    2. 修改新文件中的DocumentRoot  为新目录

    3. 创建链接到etc/apache2/sites-enabled/目录下,如:

    sudo ln -s /etc/apache2/sites-available/001-default.conf /etc/apache2/sites-enabled/001-default.conf

    4. 在/etc/apache2/apache2.conf文件中添加新目录权限(XXX表示目录):

    <Directory  XXX>

                  Options Indexes FollowSymLinks

                  AllowOverride None

                  Require all granted

    </Directory>

     5. 重启apache

    相关文章

      网友评论

          本文标题:Ubuntu Apache2 配置文件理解

          本文链接:https://www.haomeiwen.com/subject/bfntfxtx.html