Implement per-provider proxy configuration#189
Open
toanalien wants to merge 3 commits intodecolua:masterfrom
Open
Implement per-provider proxy configuration#189toanalien wants to merge 3 commits intodecolua:masterfrom
toanalien wants to merge 3 commits intodecolua:masterfrom
Conversation
- Add proxy configuration to provider credentials with url and bypass patterns - Integrate proxy agent factory into base executor for all provider types - Create proxy API endpoints for provider-specific proxy configuration - Add proxy test endpoint for validation and connectivity checks - Update local database to support proxy configuration storage - Support HTTP and SOCKS5 proxy formats with authentication API Changes: - POST /api/providers/[id]/proxy - Set/update proxy configuration - POST /api/providers/[id]/proxy/test - Test proxy connectivity - GET /api/providers/[id] - Now includes proxy configuration in response - PATCH /api/providers/[id] - Can update proxy settings via credentials proxy field
- Add proxy configuration UI to provider connection edit modal - Add proxy test button with connectivity validation - Add comprehensive unit tests for proxy agent factory - Update architecture documentation with proxy flow diagram
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Per-Provider Proxy Configuration
Adds per-provider proxy support with HTTP/HTTPS/SOCKS protocols and authentication.
What's New:
API:
POST /api/providers/[id]/proxy-{url, bypass}POST /api/providers/[id]/proxy/test- validate connectivityBackward Compatible: Global env vars (HTTP_PROXY, HTTPS_PROXY) still work.
Testing: Unit tests + proxy test endpoint included.