使用 nginx 代理到同一个子域

使用 nginx 代理到同一个子域

我刚刚购买了域名xappspot.com,我想做的是将请求代理到该域名appspot.com

例如:

http://json-time.xappspot.com/time.json->http://json-time.appspot.com/time.json

我该如何配置 nginx 来做到这一点?我搜索了一段时间,找不到传递子域名的资源。谢谢!

答案1

配置此类东西的常用方法nginx是使用代理密码指示。

就像是 :

server {
   listen 80;
   server_name json-time.xappspot.com;

   location / {
      proxy_pass http://json-time.appspot.com;
   }
}

相关内容