用 nginx 反向代理 lighttpd
现在要改用nginx做webserver,但是有一些老项目用的lighttpd。
可以用nginx反向代理功能,把一些请求叫给lighttpd处理
1修改lighttpd的配置文件
#/etc/lighttpd/lighttpd.conf
# 只允许本机访问 server.bind = "localhost" # 从81端口启动 server.port = 81
2修改nginx的配置文件
#/usr/local/nginx/conf/nginx.conf
http { # 新的项目 对应 new.domain.com 域名 server { listen 80; server_name new.domain.com; access_log logs/domain1.access.log main; index index.html; root /var/www/domain1.com/htdocs; } # 旧的项目 对应 old.domain.com 域名 server { listen 80; server_name old.domain.com; location / { # 转发给 81 端口的 lighttpd 处理 proxy_pass http://127.0.0.1:81; } } }
相关推荐
OwenJi 2020-04-30
hygbuaa 2020-02-02
82463862 2011-09-13
boante 2008-07-17
httphttpcn 2007-06-27
87204950 2011-08-22
afterlake 2011-07-16
方正SOA中间件 2011-06-23
81204957 2011-06-20
85234850 2011-05-19
87447007 2011-03-10
89401052 2010-09-29
梦想启航 2010-06-14
kaiwangic 2010-04-01
afterlake 2009-12-25
bglmmz 2009-04-04
luyinlian 2011-09-23
MARQUIS 2012-08-13
87510793 2011-06-30