mint icon indicating copy to clipboard operation
mint copied to clipboard

http proxy support.

Open eebssk1 opened this issue 1 year ago • 2 comments

Pls add http proxy in config.

We can not access modio without a proxy.

eebssk1 avatar Jul 13 '24 17:07 eebssk1

I "fixed" this by setting https_proxy in powershell and start MINT from it. Still better if we can set it directly in app.

eebssk1 avatar Oct 10 '24 08:10 eebssk1

Thanks for the inspiration. I created a start.ps1 file and wrote the following code:

$env:HTTP_PROXY = "http://127.0.0.1:8888"
$env:HTTPS_PROXY = "http://127.0.0.1:8888"

Write-Host "HTTP_PROXY: $($env:HTTP_PROXY)"
Write-Host "HTTPS_PROXY: $($env:HTTPS_PROXY)"

.\drg_mod_integration

Then run start.ps1 to start mint. This workaround works well for me but still wish that we could set the proxy directly in mint :)

andywang425 avatar Dec 06 '24 17:12 andywang425