13

如何在我的 proxy.conf.json 中定义多个代理路径?github 上的angular-cli 代理文档看起来只能有一个路径(/api):

{
  "/api": {
    "target": "http://localhost:3000",
    "secure": false
  }
}

但是当我查看webpack 代理http-proxy-middleware文档时,我发现应该可以定义多个路径(/api-v1 和 /api-v2):

// Multiple entry
proxy: [
  {
    context: ['/api-v1/**', '/api-v2/**'],
    target: 'https://other-server.example.com',
    secure: false
  }
]

但我不明白如何将它放入proxy.conf.json。

4

3 回答 3

13

在您的 proxy.conf.json 中使用以下语法:

[
  {
    "context": ["/api-v1/**", "/api-v2/**"],
    "target": "https://other-server.example.com",
    "secure": false
  }
]

实际有效的语法如下:

[
    {
        "context": [
            "/api",
            "/other-uri"
        ],
        "target": "http://localhost:8080",
        "secure": false
    }
]
于 2017-06-12T07:47:04.870 回答
4

此处记录了多个条目的语法(使用上下文): https ://github.com/angular/angular-cli/blob/master/docs/documentation/stories/proxy.md#multiple-entries

const PROXY_CONFIG = [
    {
        context: [
            "/my",
            "/many",
            "/endpoints",
            "/i",
            "/need",
            "/to",
            "/proxy"
        ],
        target: "http://localhost:3000",
        secure: false
    }
]

module.exports = PROXY_CONFIG;

这还要求您将配置从.json重命名.js并将运行命令指向新文件。

对我来说,上下文语法不太适用(我假设是因为我想使用通配符)。所以我想出了以下解决方案,它允许您生成配置:

module.exports = [
  "/my",
  "/many",
  "/endpoints",
  "/i",
  "/need",
  "/to",
  "/proxy",
  "/folder/*"
].reduce(function (config, src) {
  config[src] = {
    "target": "http://localhost:3000",
    "secure": false
  };
  return config;
}, {});

这为我完成了工作。(请注意,这仍然需要您将您的 proxy.conf.json 重命名为 proxy.conf.js 并编辑您的运行命令以指向重命名的文件)

于 2018-06-15T09:33:09.070 回答
1

截至 2021 年 3 月,答案如下:

  1. 在 CLI 配置文件中angular.json,添加/修改代理文件:

    ...
    "architect": {
      "serve": {
        "builder": "@angular-devkit/build-angular:dev-server",
        "options": {
          "browserTarget": "your-application-name:build",
          "proxyConfig": "src/proxy.conf.js"
        },
    ...
    
  2. 创建一个proxy.conf.js例如:

    const PROXY_CONFIG = [
        {
            context: [
                "/my",
                "/many",
                "/endpoints",
                "/i",
                "/need",
                "/to",
                "/proxy"
            ],
            target: "http://localhost:3000",
            secure: false
        }
    ]
    module.exports = PROXY_CONFIG;
    

注意是。js,而不是 .json。

官方详情

更新,2021-07-08它需要.js.json。前者更好,因为它允许// comment

对于 SSL:

"target" : "https://localhost:3001", 
        "changeOrigin": true,       // solves CORS Error in F12
        "logLevel": "debug",        //"info": prints out in console
        "rejectUnauthorzied": true, // must be false if not specify here
        "secure": false,            // PROD must be "true", but DEV false else "UNABLE_TO_VERIFY_LEAF_SIGNATURE"
        "strictSSL": true,          // must be false if not specify here
        "withCredentials": true     // required for Angular to send in cookie
于 2021-03-22T16:16:46.787 回答