apache实现部署多个网站(一个ip部署多域名)的方法详解

前言

在日常的网站发布中很多情况下都无法做到一个IP对应一个站点,在IP4的情况下IP的资源是相对有限的。然而作为最流行的Apache自然也考虑到这种情况,下面来一起看看详细的介绍吧。

配置方法

首先apache的版本是2.4.7,然后系统是Ubuntu 14.04.1 LTS。(因为好像配置文件和目录有差异)

首先进到apache2目录下,

apache实现部署多个网站(一个ip部署多域名)的方法详解 Linux 第1张

我们要探讨的主要是sites-available和sites-enabled根据字面意思,前一个是网站可用的,后一个是网站可用的,然后我们还知道了,sites-enabled里面的文件是sites-available里面文件的软链接,所以我们主要改site-available的文件,打开site-available有两个文件,但我们只需要000-default.conf文件,打开cat文件

代码如下:

  <VirtualHost *:80>   # The ServerName directive sets the request scheme, hostname and port that   # the server uses to identify itself. This is used when creating   # redirection URLs. In the context of virtual hosts, the ServerName   # specifies what hostname must appear in the request's Host: header to   # match this virtual host. For the default virtual host (this file) this   # value is not decisive as it is used as a last resort host regardless.   # However, you must seothert it for any further virtual host explicitly.   #ServerName www.example.com     ServerAdmin webmaster@localhost   DocumentRoot /var/www/     # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,   # error, crit, alert, emerg.   # It is also possible to configure the loglevel for particular   # modules, e.g.   #LogLevel info ssl:warn     ErrorLog ${APACHE_LOG_DIR}/error.log   CustomLog ${APACHE_LOG_DIR}/access.log combined     # For most configuration files from conf-available/, which are   # enabled or disabled at a global level, it is possible to   # include a line for only one particular virtual host. For example the   # following line enables the CGI configuration for this host only   # after it has been globally disabled with "a2disconf".   #Include conf-available/serve-cgi-bin.conf  </VirtualHost>

这就是网址配置文件了,而我们要修改的只有被注释掉的ServerName 域名,DocumentRoot 路径这两个部分,去掉注释剩下。

  <VirtualHost *:80>   ServerName #这里是域名地址   ServerAdmin webmaster@localhost   DocumentRoot /var/www/  #这里是路径   ErrorLog ${APACHE_LOG_DIR}/error.log   CustomLog ${APACHE_LOG_DIR}/access.log combined  </VirtualHost>

可以直接添加在下面,重启apache就成了。但是上面的优先级要更高,访问自己的域名会跳转到你设置的路径,直接访问ip还是会到第一个设置的路径,你也可以选择删除。

还有另外一种改法就是新建一个文件,xxx.conf然后内容一样,

  <VirtualHost *:80>   ServerName #这里是域名地址   ServerAdmin webmaster@localhost   DocumentRoot /var/www/  #这里是路径   ErrorLog ${APACHE_LOG_DIR}/error.log   CustomLog ${APACHE_LOG_DIR}/access.log combined  </VirtualHost>

在创建软链接 ln -s ../sites-avaiable/xxx.conf ../sites-enable/xxx.conf

这样子也可以实现,但是优先级还是000-default.conf高。

好了,就是这么简单。

附:配置Apache2.4.7反向代理的方法

1.设置httpd.conf

打开Apache24/conf文件夹下的httpd.conf设置文件,找到一下几行把前面的注释‘#'删除

  LoadModule proxy_module modules/mod_proxy.so  LoadModule proxy_connect_modulemodules/mod_proxy_connect.so  LoadModule proxy_ftp_modulemodules/mod_proxy_ftp.so  LoadModule proxy_http_modulemodules/mod_proxy_http.so

(Ps:很多人都会注释LoadModuleproxy_balancer_modulemodules/mod_proxy_balancer.so,然而这个是做负载均衡用的一个功能,单纯做反向代理的话,不需要用这个,而且取消了这里的注释不进行相应的设置的话,会导致apache服务无法开启)

然后找到Include conf/extra/httpd-vhosts.conf

这一行前面的注释‘#'也删除,引入这个文件

2.设置httpd-vhosts.conf

打开Apache24/conf/extra文件夹下的httpd-vhosts.conf.conf找到

  <VirtualHost _default_:80>  #ServerName www.example.com:80  DocumentRoot "${SRVROOT}/htdocs"  </VirtualHost>

在后面添加

  ProxyRequests Off  ProxyPass /***(你想要访问的地址) http://*******(想要代理的地址)  ProxyPassReverse /***(你想要访问的地址) http://*******(想要代理的地址)

比如说我想在浏览器中输入localhost,但实际获取的内容是www.baidu.com的话就可以设置为ProxyPass /***(你想要访问的地址) http://*******(想要代理的地址),第二个ProxyPassReverse是做域名重定向使用的,如果你代理的那个地址重定向的跳到另一个地方,有了ProxyPassReverse的设置就可以相应的跳转过去 没有的话可能就会报错

如果想让别的电脑访问自己电脑的外网地址就可以访问自己服务器可以设置一下httpd.conf中的<Directory "${SRVROOT}/htdocs">

Require all denied改为Require all granted允许所有的请求和访问

然后就可以使用了~

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对脚本之家的支持。

参与评论