Skip to content

Nginx 代理 Ganache

https://协议的Remix网页连接ganache时,必须连接https://协议的外部节点服务,否则必须使用http://协议的Remix网页连接ganache。因此需要 Nginx 代理 Ganache,这个GitHub issue也提到了这个需求。

只需在Nginx中配置:

nginx
    location /ganache {
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection 'upgrade';
        proxy_read_timeout 600s;
        
        proxy_pass http://host.docker.internal:8545/;
    }

访问 https://your-domain.com/ganache即可使用正常Ganache服务。