FIWARE - 配置为 HTTPS 的 PEP 代理

FIWARE - PEP Proxy configured to HTTPS

我想知道如何配置 PEP 代理以便我可以通过 HTTPS 交换消息。我有一个 Orion 上下文代理实例,只有在 PEP 代理通过后才能访问它。我的 PEP 代理 (Wilma) 配置文件 (config.js) 具有以下内容:

config.https = {
   enabled: true,
   cert_file: 'cert/idm.crt',
   key_file: 'cert/idm.key',
   port: 443
};

config.account_host = 'https://localhost:8000';   //account.lab.fiware.org';
config.keystone_host = 'localhost'; //'cloud.lab.fiware.org';
config.keystone_port = 5000; //4731;

config.app_host = 'https://orion'; //'localhost';
config.app_port = ''; //Nginx is configured to redirect to port 1026
// Use true if the app server listens in https
config.app_ssl = true;

config.username = 'pep_proxy_credential_obtained_at_portal';
config.password = 'password_obtained_at_portal';

我也有 HTTPS 到 HTTP(Nginx 配置为反向代理),这样我直接发送到 Orion 的请求是安全的。 HTTPS 仅在没有 PEP 代理流的情况下工作。当我插入 authorization/authentication 流时,我遇到了问题,因为 PEP 代理不处理 SSL 证书。这是 Nginx 配置:

location / {
    proxy_set_header        Host $host;
    proxy_set_header        X-Real-IP $remote_addr;
    proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header        X-Forwarded-Proto $scheme;

    # Fix the “It appears that your reverse proxy set up is broken" error.
    proxy_pass          http://orion:1026;
    proxy_read_timeout  90;
    proxy_redirect      http://orion:1026 https://orion;
}

我想以一种只能通过 HTTPS(包括 PEP 代理流)与 Orion 通信的方式集成我所拥有的。我已经搜索过,但没有找到任何与 PEP 代理中的 HTTPS 配置相关的有用信息。

编辑:PEP 代理重定向到应用程序时出错:

2017-01-17 20:52:55.544  - INFO: Server - Success authenticating PEP proxy. 
Proxy Auth-token:  d7ec08edd87d43418edfd558df26f427
2017-01-17 20:53:49.450  - INFO: IDM-Client - Checking token with IDM...
2017-01-17 20:53:49.508  - INFO: Root - Access-token OK. Redirecting to app...
Refused to set unsafe header "accept-encoding"
Refused to set unsafe header "content-length"

应用程序出现的错误是:

('Connection aborted.', BadStatusLine('HTTP/1.1 0 unknown\r\n',))

您可以使用配置文件

中的参数"https"将PEP代理配置为侦听HTTPS

https://github.com/ging/fiware-pep-proxy/blob/master/config.js.template#L7

问题出在配置中的 https:

config.app_host = 'https://orion';

我必须调试才能找到它。 PEP 代理 Wilma 将协议(http 或 https)添加到配置的应用程序主机。正确的是不配置协议:

config.app_host = 'orion';

也许可以将此观察结果添加到 Wilma 文档中,以避免像我这样的错误。