Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

http proxy support. #225

Open
eebssk1 opened this issue Jul 13, 2024 · 2 comments
Open

http proxy support. #225

eebssk1 opened this issue Jul 13, 2024 · 2 comments
Labels
A-network Area: networking C-enhancement Category: new feature or request

Comments

@eebssk1
Copy link

eebssk1 commented Jul 13, 2024

Pls add http proxy in config.

We can not access modio without a proxy.

@jieyouxu jieyouxu added C-enhancement Category: new feature or request A-network Area: networking labels Aug 4, 2024
@eebssk1
Copy link
Author

eebssk1 commented Oct 10, 2024

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

@andywang425
Copy link

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 :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-network Area: networking C-enhancement Category: new feature or request
Projects
None yet
Development

No branches or pull requests

3 participants