Ubuntu环境下apache多端口配置虚拟主机的方法

jerry ubuntu 2015年09月18日 收藏

linux环境apache多端口配置虚拟主机的方法

Linux(Ubuntu)
默认情况下,linux上apache使用的
默认文档目录是:/var/www
默认端口是:80

如果想发布自己的一个系统资源目录,可以使用下面的方法,执行如下命令:

(1)添加监听端口

  1. #cd /etc/apache2
  2. #vim ports.conf


文件添加:

  1. NameVirtualHost *:8000
  2. Listen 8000


(2)配置虚拟目录

  1. #cd /etc/apache2/sites-available
  2. #cp default default-me
  3. #vim default-me


文件内容如下:

  1. <VirtualHost *:8000>
  2.     ServerAdmin webmaster@localhost
  3.     DocumentRoot /wwwroot
  4.     <Directory />
  5.         Options FollowSymLinks
  6.         AllowOverride None
  7.     </Directory>
  8.     <Directory /wwwroot/>
  9.         Options Indexes FollowSymLinks MultiViews
  10.         AllowOverride None
  11.         Order allow,deny
  12.         allow from all
  13.     </Directory>
  14.     ErrorLog /var/log/apache2/error.log
  15.     # Possible values include: debug, info, notice, warn, error, crit,
  16.     # alert, emerg.
  17.     LogLevel warn
  18.     CustomLog /var/log/apache2/access.log combined
  19. </VirtualHost>


粗体部分是关键点。

(3)发布站点

  1. # ln -s /etc/apache2/sites-available/default-me /etc/apache2/sites-enabled/001-default


(4)重启服务

  1. #/etc/init.d/apache2 restart


(5)测试
http://localhost:8000/
如果能够正常访问就说明配置正确了。


Ubuntu系统配置Apache2虚拟目录和端口

1.
在 sites-available/ 目录下创建新的文件填写此虚拟主机的配置指令
2.
使用 a2ensite 命令启用虚拟主机; 使用 a2dissite 命令停用虚拟主机
例如要创建一个基于端口的虚拟主机,要执行如下的步骤:
S1. 修改 /etc/apache2/ports.conf 文件添加一个新的监听端口

  1. /etc/apache2/ports.conf
  2. Listen 80
  3. Listen 8080


S2. 在 sites-available/ 目录下创建新的文件 192.168.0.222-8080,添加如下的配置

  1. /etc/apache2/sites-available/192.168.0.222:8080
  2. <VirtualHost 192.168.0.222:8080>
  3. ServerAdmin webmaster@localhost
  4. <Directory />
  5. Options FollowSymLinks
  6. AllowOverride None
  7. </Directory>
  8. DocumentRoot /home/www/192.168.0.222-8080
  9. <Directory /home/www/192.168.0.222-8080/>
  10. Options Indexes FollowSymLinks MultiViews
  11. AllowOverride None
  12. Order allow,deny
  13. allow from all
  14. </Directory>
  15. ErrorLog /var/log/apache2/error.log
  16. LogLevel warn
  17. CustomLog /var/log/apache2/access.log combined
  18. ServerSignature On
  19. </VirtualHost>


S3. 创建 /home/www 目录和 index 文件

  1. sudo mkdir -/home/www/192.168.0.222-8080
  2. sudo touch /home/www/192.168.0.222-8080/index.php

S4. 使用 a2ensite 命令启用虚拟主机

  1. sudo a2ensite 192.168.0.222-8080

S5. 重新启动 Apache

  1. sudo /etc/init.d/apache2 restart

以下是一个实例
ports.conf 文件内容 例

  1. # If you just change the port or add more ports here, you will likely also
  2. # have to change the VirtualHost statement in
  3. # /etc/apache2/sites-enabled/000-default
  4. # This is also true if you have upgraded from before 2.2.9-3 (i.e. from
  5. # Debian etch). See /usr/share/doc/apache2.2-common/NEWS.Debian.gz and
  6. # README.Debian.gz
  7. #如果开多个虚拟主机,所有的NameVirtualHost,都应该设置为以下一样,或不写
  8. #不然会错 如 *:3008 has no VirtualHosts
  9. NameVirtualHost *:80
  10. #每增加一个端口,就增加一条 Listen 端口
  11. Listen 3008
  12. Listen 8080
  13. <IfModule mod_ssl.c>
  14.     # If you add NameVirtualHost *:443 here, you will also have to change
  15.     # the VirtualHost statement in /etc/apache2/sites-available/default-ssl
  16.     # to <VirtualHost *:443>
  17.     # Server Name Indication for SSL named virtual hosts is currently not
  18.     # supported by MSIE on Windows XP.
  19.     Listen 443
  20. </IfModule>
  21. <IfModule mod_gnutls.c>
  22.     Listen 443
  23. </IfModule>

在sites-available增加一个文件,访问时输入 http://IP:8080/labelhttp/,这样,非网页文件便可下载
内容如下(内容仿default)
只改动了三个地方

  1.  Alias /labelhttp /home/ftp/users/labelhttp
  2.  DocumentRoot /home/ftp/users/labelhttp
  3.  <Directory /home/ftp/users/labelhttp/>

详细其他内容如下

  1.  Alias /labelhttp /home/ftp/users/labelhttp
  2.         ServerAdmin webmaster@localhost
  3.         DocumentRoot /home/ftp/users/labelhttp
  4.         <Directory />
  5. Options FollowSymLinks
  6. AllowOverride None
  7.         </Directory>
  8.         <Directory /home/ftp/users/labelhttp/>
  9. Options Indexes FollowSymLinks MultiViews
  10. AllowOverride None
  11. Order allow,deny
  12. allow from all
  13.         </Directory>
  14.         ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
  15.         <Directory "/usr/lib/cgi-bin">
  16. AllowOverride None
  17. Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
  18. Order allow,deny
  19. Allow from all
  20.         </Directory>
  21.         ErrorLog ${APACHE_LOG_DIR}/error.log
  22.         # Possible values include: debug, info, notice, warn, error, crit,
  23.         # alert, emerg.
  24.         LogLevel warn
  25.         CustomLog ${APACHE_LOG_DIR}/access.log combined
  26.     Alias /doc/ "/usr/share/doc/"
  27.     <Directory "/usr/share/doc/">
  28.         Options Indexes MultiViews FollowSymLinks
  29.         AllowOverride None
  30.         Order deny,allow
  31.         Deny from all
  32.         Allow from 127.0.0.0/255.0.0.0 ::1/128
  33.     </Directory>