1. 程式人生 > >20170830L08-06老男孩linux實戰運維培訓-Lamp系列之-Apache服務生產實戰應用指南03

20170830L08-06老男孩linux實戰運維培訓-Lamp系列之-Apache服務生產實戰應用指南03

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 [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