20170830L08-06老男孩linux实战运维培训-Lamp系列之-Apache服务生产实战应用指南03
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了20170830L08-06老男孩linux实战运维培训-Lamp系列之-Apache服务生产实战应用指南03相关的知识,希望对你有一定的参考价值。
还是说的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 [email protected]
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 [email protected]
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的主要内容,如果未能解决你的问题,请参考以下文章
20170804L08-03老男孩Linux实战运维培训-Lamp系列之-http服务重要基础概念讲解
《跟老男孩学Linux运维:Web集群实战》epub下载在线阅读全文,求百度网盘云资源