标签:apache
还是说的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
标签:apache
原文地址:http://398528.blog.51cto.com/388528/1961169