matrosov2019

Results 3 comments of matrosov2019

I am found solution: ``` const { HttpsProxyAgent, HttpsProxyAgentOptions } = require("https-proxy-agent"); let networkOptions = { httpsAgent: new HttpsProxyAgent(`http://${account.getProxyLogin()}:${account.getProxyPass()}@${account.getProxyHost()}:${account.getProxyPort()}`), ```

> Interested, please send information about it.

**My nginx config now:** server { server_name YOUR_DOMAIN; location / { proxy_pass http://localhost:2567; 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_read_timeout 86400s; proxy_send_timeout 86400s;...