分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > IT知识

20170830L08-06老男孩linux实战运维培训-Lamp系列之-Apache服务生产实战应用指南03

发布时间:2023-09-06 01:07责任编辑:郭大石关键词:暂无标签

还是说的apache的设置

这一次说的是虚拟主机

主要配置文件

httpd.conf

httpd-vhhsots.conf


httpd.conf主要控制目录的访问


httpd-vhosts.conf控制域名的转换,要别名,日志的路径


对于实验中的访问主机中要设置 hosts文件

<Directory "/var/bbs">

    #

    # Possible values for the Options directive are "None", "All",

    # or any combination of:

    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews

    #

    # Note that "MultiViews" must be named *explicitly* --- "Options All"

    # doesn‘t give it to you.

    #

    # The Options directive is both complicated and important.  Please see

    # http://httpd.apache.org/docs/2.4/mod/core.html#options

    # for more information.

    #

    Options  FollowSymLinks


    #

    # AllowOverride controls what directives may be placed in .htaccess files.

    # It can be "All", "None", or any combination of the keywords:

    #   AllowOverride FileInfo AuthConfig Limit

    #

    AllowOverride None


    #

    # Controls who can get stuff from this server.

    #

    Require all granted

</Directory>


httpd-vhosts.conf主要设置字段

<VirtualHost *:80>

    ServerAdmin xxxxxxx@qq.com

    DocumentRoot "/var/blog"

    ServerName blog.arthur.com

    ServerAlias arthur.com

    ErrorLog "logs/blog-error_log"

    CustomLog "logs/blog-access_log" common

</VirtualHost>



<VirtualHost *:80>

    ServerAdmin xxxxxxx@qq.com

    DocumentRoot "/var/bbs"

    ServerName bbs.arthur.com

    ServerAlias arthur.com

    ErrorLog "logs/bbs-error_log"

    CustomLog "logs/bbs-access_log" common

</VirtualHost>


还有记得打开Include权限,也就是虚拟主机权限

# Virtual hosts

Include conf/extra/httpd-vhosts.conf            #去掉前面的注释


命令嘛学了就要用,不用就不熟

 sed -i ‘s#\#Include conf/extra/httpd-vhosts.conf#Include conf/extra/httpd-vhosts.conf#‘ /usr/local/apache/conf/httpd.conf


 echo ‘i am oldboy! my blog is http://blog.arthur.com‘ >/var/blog/index.html


20170830L08-06老男孩linux实战运维培训-Lamp系列之-Apache服务生产实战应用指南03

原文地址:http://398528.blog.51cto.com/388528/1961169

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved