博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Apache Server 2.2 多站点域名转向配置文件
阅读量:6712 次
发布时间:2019-06-25

本文共 3551 字,大约阅读时间需要 11 分钟。

#ApacheServe配置
#服务器根目录
ServerRoot "D:/Apache Server 2.2" 
#侦听端口
Listen 80
LimitRequestLine 40940
LimitRequestFieldSize 40940
#加载模块
LoadModule actions_module modules/mod_actions.so
LoadModule alias_module modules/mod_alias.so
LoadModule asis_module modules/mod_asis.so
LoadModule auth_basic_module modules/mod_auth_basic.so 
LoadModule authn_default_module modules/mod_authn_default.so
LoadModule authn_file_module modules/mod_authn_file.so 
LoadModule authz_default_module modules/mod_authz_default.so
LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
LoadModule authz_host_module modules/mod_authz_host.so 
LoadModule authz_user_module modules/mod_authz_user.so
LoadModule autoindex_module modules/mod_autoindex.so 
LoadModule cgi_module modules/mod_cgi.so 
LoadModule dir_module modules/mod_dir.so 
LoadModule env_module modules/mod_env.so 
LoadModule include_module modules/mod_include.so 
LoadModule isapi_module modules/mod_isapi.so 
LoadModule log_config_module modules/mod_log_config.so 
LoadModule mime_module modules/mod_mime.so 

LoadModule negotiation_module modules/mod_negotiation.so  

#加载代理模块
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_connect_module modules/mod_proxy_connect.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule setenvif_module modules/mod_setenvif.so 
<IfModule !mpm_netware_module>
<IfModule !mpm_winnt_module>
User daemon
Group daemon
</IfModule>
</IfModule>
  
ServerAdmin zhangqs008@163.com
ServerName 127.0.0.1:80
DocumentRoot "D:/Apache Server 2.2/htdocs"
<Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
</Directory>
<Directory "D:/Apache Server 2.2/htdocs">
    Options Indexes FollowSymLinks
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>
<IfModule dir_module>
    DirectoryIndex index.html
</IfModule>
<FilesMatch "^\.ht">
    Order allow,deny
    Deny from all
    Satisfy All
</FilesMatch>
ErrorLog "logs/error.log"
LogLevel warn
<IfModule log_config_module>
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common
    <IfModule logio_module>
      # You need to enable mod_logio.c to use %I and %O
      LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
    </IfModule>
    CustomLog "logs/access.log" common
    #CustomLog "logs/access.log" combined
</IfModule>
<IfModule alias_module>
    ScriptAlias /cgi-bin/ "D:/Apache Server 2.2/cgi-bin/"
</IfModule>
<IfModule cgid_module>
</IfModule>
<Directory "D:/Apache Server 2.2/cgi-bin">
    AllowOverride None
    Options None
    Order allow,deny
    Allow from all
</Directory>
DefaultType text/plain
<IfModule mime_module>
    TypesConfig conf/mime.types
    AddType application/x-compress .Z
    AddType application/x-gzip .gz .tgz
</IfModule>
<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>
#[warn] _default_ VirtualHost overlap on port 80, the first has precedence
#是因为第一个虚拟主机配置已经占用了80端口,所以将会沿用第一虚拟主机的配置。
#所以不管你第二个,或者第n个虚拟主机怎么配置,都会沿用第一个虚拟主机的配置,即出现的都是第一个站点的内容。
NameVirtualHost *:80
<VirtualHost *:80>
  ProxyPreserveHost On
  ServerName  gz.***.com
  ProxyPass / http://192.168.2.218/
  ProxyPassReverse / http://192.168.2.218/
</VirtualHost>
<VirtualHost *:80>
  ProxyPreserveHost On
  ServerName  work.***.com
  ProxyPass / http://192.168.0.254/
  ProxyPassReverse / http://192.168.0.254/
</VirtualHost>
<VirtualHost *:80>
  ProxyPreserveHost On
  ServerName  web.***.com
  ProxyPass / http://192.168.1.254/
  ProxyPassReverse / http://192.168.1.254/
</VirtualHost>
 

转载地址:http://wmolo.baihongyu.com/

你可能感兴趣的文章
linux磁盘批量分区格式化和挂载脚本
查看>>
LVM配置与管理
查看>>
RAC节点服务ora.rac2.gsd的offline问题解决方法
查看>>
SharedPreferences小细节
查看>>
Configuring Default-network for EIGRP
查看>>
【我们都爱Paul Hegarty】斯坦福IOS8公开课个人笔记32 NSNotification
查看>>
【嵌入式】探究bootloader,分析u-boot源码
查看>>
Oracle数据库通过定义TYPE及Member对象来实现日志信息的分级管理
查看>>
pb之autocommit
查看>>
UDT拥塞控制算法
查看>>
Bsidesiowa 2015 Track2: Secure Process Isolation With Docker By Greg Rice
查看>>
解决开机 svchost.exe 进程占用居高不下的问题
查看>>
如何控制某个方法允许并发访问线程的个数?
查看>>
Android2.2 API 中文文档系列(2) —— EditText
查看>>
openstack iptables
查看>>
Matlab中的ans小结
查看>>
三行代码接入,社交软件打字时底下弹出的表情布局,自定义ViewPager+页面点标+各种功能的android小框架。...
查看>>
nginx学习总结二(nginx的启动停止以及版本平滑升级)
查看>>
linux网卡绑定
查看>>
fastjson报java.lang.ClassNotFoundError
查看>>