惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 叶小钗
MyScale Blog
MyScale Blog
博客园 - 【当耐特】
I
InfoQ
腾讯CDC
aimingoo的专栏
aimingoo的专栏
L
LangChain Blog
人人都是产品经理
人人都是产品经理
D
DataBreaches.Net
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Engineering at Meta
Engineering at Meta
A
About on SuperTechFans
Google DeepMind News
Google DeepMind News
Vercel News
Vercel News
C
Check Point Blog
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
美团技术团队
Stack Overflow Blog
Stack Overflow Blog
Y
Y Combinator Blog
D
Docker
MongoDB | Blog
MongoDB | Blog
量子位
博客园_首页

DotCloud

玩了下 DotCloud + DropBox 墙了吧? 在Dotcloud上建的站点 终于被墙了。 DotCloud部署WordPress 403,什么情况?? dotcould中的ramen.www 是什么意思? dotcloud开始收费,99刀/月 关于在 DotCloud 上以 WSGI 模式运行 Tornado App
求教DOTCLOUD上能不能做反向代理的裸域绑定
lintoy · 2011-08-05 · via DotCloud

就像下面这个贴里一样的。
http://www.v2ex.com/t/6663#reply16
方法绑定一个域名做反向代理
试了下面方法不行。
创建 一个nginx.conf 配置文件
server{
listen 80;
server_name bbs.mucun.tk;
location / {
proxy_redirect off;
proxy_pass http://mucunbbs.appspot.com;
proxy_set_header X-Real-IP $remote_addr;
}
}