<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Licess&#039;s Blog &#187; 反向代理</title>
	<atom:link href="http://blog.licess.org/tag/%e5%8f%8d%e5%90%91%e4%bb%a3%e7%90%86/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.licess.org</link>
	<description>关注VPS Linux Nginx MySQL PHP WEB开发 系统管理 服务器架构 Debian CentOS</description>
	<lastBuildDate>Wed, 11 Jan 2012 11:56:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Nginx反向代理</title>
		<link>http://blog.licess.org/nginx-proxy/</link>
		<comments>http://blog.licess.org/nginx-proxy/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 08:32:17 +0000</pubDate>
		<dc:creator>licess</dc:creator>
				<category><![CDATA[Nginx]]></category>
		<category><![CDATA[反向代理]]></category>

		<guid isPermaLink="false">http://blog.licess.org/?p=720</guid>
		<description><![CDATA[server { listen 80; server_name t.vpser.net;   location / { proxy_pass http://twitter.com/; proxy_redirect off; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } } 相关文章：LNMP一键安装包 自动无缝升级Nginx至任意版本Nginx 新的重载方式 (nginx -s reload)nginx文件类型错误解析漏洞《实战Nginx：取代Apache的高性能Web服务器》pdf电子书下载Linux VPS Nginx+PHP 安装ionCubeLNMP &#8211; CentOS/RadHat/Debian/Ubuntu下Nginx+PHP+MySQL一键安装包V0.3发布自动将Apache Rewrite伪静态规则转换为Nginx RewriteNginx打开目录浏览功能(autoindex)LNMP Debian/Ubuntu下Nginx+MySQL+PHP+phpMyAdmin+Zend一键安装包Nginx无缝升级 © licess for Licess&#039;s Blog, 2010. &#124; Permalink &#124; 6 comments &#124; Add to del.icio.us Post tags: Nginx, 反向代理 [...]]]></description>
			<content:encoded><![CDATA[<pre>server
	{
    	listen          80;
    	server_name     <a href="http://www.vpser.net;">t.vpser.net;
</a> 
    	location / {
        	proxy_pass              http://twitter.com/;
        	proxy_redirect          off;
        	proxy_set_header        X-Real-IP       $remote_addr;
        	proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
        	}
	}</pre>
<h2  class="related_post_title">相关文章：</h2><ul class="related_post"><li><a href="http://blog.licess.org/lnmp-upgrade-any-nginx-version/" title="LNMP一键安装包 自动无缝升级Nginx至任意版本">LNMP一键安装包 自动无缝升级Nginx至任意版本</a></li><li><a href="http://blog.licess.org/nginx-nginx-s-reload/" title="Nginx 新的重载方式 (nginx -s reload)">Nginx 新的重载方式 (nginx -s reload)</a></li><li><a href="http://blog.licess.org/nginx-securit-script_filename/" title="nginx文件类型错误解析漏洞">nginx文件类型错误解析漏洞</a></li><li><a href="http://blog.licess.org/nginx-pdf-download/" title="《实战Nginx：取代Apache的高性能Web服务器》pdf电子书下载">《实战Nginx：取代Apache的高性能Web服务器》pdf电子书下载</a></li><li><a href="http://blog.licess.org/linux-vps-nginx-php-install-ioncube/" title="Linux VPS Nginx+PHP 安装ionCube">Linux VPS Nginx+PHP 安装ionCube</a></li><li><a href="http://blog.licess.org/lnmp-v0-3/" title="LNMP &#8211; CentOS/RadHat/Debian/Ubuntu下Nginx+PHP+MySQL一键安装包V0.3发布">LNMP &#8211; CentOS/RadHat/Debian/Ubuntu下Nginx+PHP+MySQL一键安装包V0.3发布</a></li><li><a href="http://blog.licess.org/convert-apache-htaccess-to-nginx/" title="自动将Apache Rewrite伪静态规则转换为Nginx Rewrite">自动将Apache Rewrite伪静态规则转换为Nginx Rewrite</a></li><li><a href="http://blog.licess.org/nginx-autoindex/" title="Nginx打开目录浏览功能(autoindex)">Nginx打开目录浏览功能(autoindex)</a></li><li><a href="http://blog.licess.org/lnmp-debian-ubuntu/" title="LNMP Debian/Ubuntu下Nginx+MySQL+PHP+phpMyAdmin+Zend一键安装包">LNMP Debian/Ubuntu下Nginx+MySQL+PHP+phpMyAdmin+Zend一键安装包</a></li><li><a href="http://blog.licess.org/nginx-upgrade/" title="Nginx无缝升级">Nginx无缝升级</a></li></ul><hr />
<p><small>© licess for <a href="http://blog.licess.org">Licess&#039;s Blog</a>, 2010. |
<a href="http://blog.licess.org/nginx-proxy/">Permalink</a> |
<a href="http://blog.licess.org/nginx-proxy/#comments">6 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://blog.licess.org/nginx-proxy/&title=Nginx反向代理">del.icio.us</a>
<br/>
Post tags: <a href="http://blog.licess.org/tag/nginx/" rel="tag">Nginx</a>, <a href="http://blog.licess.org/tag/%e5%8f%8d%e5%90%91%e4%bb%a3%e7%90%86/" rel="tag">反向代理</a><br/>
<br/>
<img src="http://www.vpser.net/images/tuijian.gif"> <a href="http://www.vpser.net/usa-vps/">美国VPS推荐</a>  | <a href="http://shop63846532.taobao.com/">军哥代购 - 提供美国及海外VPS/VPN/域名代购，美元/欧元代付</a> QQ：503228080
</small></p>]]></content:encoded>
			<wfw:commentRss>http://blog.licess.org/nginx-proxy/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

