還是說的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>
DocumentRoot "/var/bbs"
ServerName bbs.arthur.com
ErrorLog "logs/bbs-error_log"
CustomLog "logs/bbs-access_log" common
還有記得打開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
本文轉自wangchangshu2 51CTO部落格,原文連結:http://blog.51cto.com/398528/1961169,如需轉載請自行聯系原作者