Hyperledger-Composer-Rest-Server - REST API public

时间:2018-03-06 15:53:58

标签: rest hyperledger-composer

有没有办法在另一个IP /网络上运行Hyperledger Composer的Rest-Server而不是在localhost-port上运行?

1 个答案:

答案 0 :(得分:0)

或者,您也可以使用Nginx反向代理将所有流量重新路由到localhost:3000。在您的Nginx配置文件中尝试

server {
    listen 80;

    server_name example.com;

    location / {
        proxy_pass http://localhost:3000;
        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;
    }
}

请确保使用正确的IP /域替换example.com,并使用sudo systemctl restart nginx重新启动Nginx。如果您正在运行Ubuntu,则以上设置应保存到/etc/nginx/conf.d/example.com.conf