在nginx上托管静态angular2应用程序并将http请求代理到后端api

时间:2016-10-06 16:17:03

标签: angular api nginx proxy

如何让angular2路由工作并将http请求代理到另一台机器上的rest api?

我在nginx服务器上有一个angular2 web应用程序,它提供静态html文件。我在另一台具有不同IP地址的计算机上托管了一个单独的rest api。我已将位置设置为/在我的nginx配置文件中,以允许angular2路由正常工作。我还添加了一个位置/ api /我希望拦截任何api请求并将它们代理到我的后端api。

我的nginx配置代理设置为http://swapi.co以进行测试。

events {
  worker_connections  4096;  ## Default: 1024
}

http {
  server {
    listen       80;
    server_name  localhost;

    root   /usr/share/nginx/html;
    index  index.html index.htm;
    include /etc/nginx/mime.types;

    location / {
         # If you want to enable html5Mode(true) in your angularjs app for pretty URL
         # then all request for your angularJS app will be through index.html
         try_files $uri /index.html;
    }

    # /api will server your proxied API that is running on same machine different port
    # or another machine. So you can protect your API endpoint not get hit by public directly
    location /api/ {
        proxy_pass http://swapi.co;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection 'upgrade';
        proxy_set_header Host $host;
        proxy_cache_bypass $http_upgrade;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }

    #Static File Caching. All static files with the following extension will be cached for 1 day
    location ~* .(jpg|jpeg|png|gif|ico|css|js)$ {
        expires 1d;
    }
  } 
}

我的angular2服务

import { Injectable } from '@angular/core';
import { Http, Response } from '@angular/http';
import { Observable } from 'rxjs/Observable';

@Injectable()
export class Service {

  private url: string = '/api/people/';
  constructor (private http: Http) {}

  getPeople () {
    return this.http.get(this.url)
                  .map(res => res.json());
  }
}

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:8)

让我在我的开发环境中正确代理请求。添加到http块并指向代理传递给上游api值

for (auto i = 0u; i != n; ++i)
    std::cout << data1[i] << "\t" << data2[i] << "\n";

完成配置:

uint32_t