{"id":20784588,"url":"https://github.com/xzeldon/http-proxy-server","last_synced_at":"2025-10-05T07:47:49.630Z","repository":{"id":229955733,"uuid":"712241279","full_name":"xzeldon/http-proxy-server","owner":"xzeldon","description":"Simple http proxy server implemented in Go","archived":false,"fork":false,"pushed_at":"2023-10-31T18:17:24.000Z","size":13,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-11T23:18:44.736Z","etag":null,"topics":["http","http-proxy","proxy"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/xzeldon.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2023-10-31T04:38:22.000Z","updated_at":"2025-01-31T09:00:05.000Z","dependencies_parsed_at":"2024-03-27T04:54:44.375Z","dependency_job_id":"ec468994-7f8e-4556-8558-269f7fa7a653","html_url":"https://github.com/xzeldon/http-proxy-server","commit_stats":null,"previous_names":["xzeldon/http-proxy-server"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/xzeldon/http-proxy-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xzeldon%2Fhttp-proxy-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xzeldon%2Fhttp-proxy-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xzeldon%2Fhttp-proxy-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xzeldon%2Fhttp-proxy-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xzeldon","download_url":"https://codeload.github.com/xzeldon/http-proxy-server/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xzeldon%2Fhttp-proxy-server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278425499,"owners_count":25984686,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-05T02:00:06.059Z","response_time":54,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["http","http-proxy","proxy"],"created_at":"2024-11-17T14:31:07.133Z","updated_at":"2025-10-05T07:47:49.609Z","avatar_url":"https://github.com/xzeldon.png","language":"Go","readme":"# HTTP Proxy Server\n\nThis is a lightweight proxy server written in Go that supports HTTP requests and HTTPS tunneling.\n\nMirror on my [\u003cimg src=\"https://git.zeldon.ru/assets/img/logo.svg\" align=\"center\" width=\"20\" height=\"20\"/\u003e Git](https://git.zeldon.ru/zeldon/http-proxy-server)\n\n## Features\n\n- Proxying HTTP requests\n- Tunneling HTTPS requests\n- Optional Basic Proxy Authentication\n- Customizable port, username, and password using command-line arguments\n- Logging\n\n## Prerequisites\n\n- Golang (if building from source)\n\n## Usage\n\n### Running the Proxy\n\n#### For Darwin/Linux:\n\n1. Download the latest release for your platform from GitHub releases\n2. Extract the downloaded archive:\n\n   ```bash\n   tar -xvzf http-proxy-server-v{version}-{platform}-{arch}.tar.gz\n   ```\n\n3. Navigate to the extracted folder:\n\n   ```bash\n   cd http-proxy-server-v{version}-{platform}-{arch}\n   ```\n\n4. Run the proxy:\n\n   ```bash\n   ./http-proxy-server --port \u003cPORT\u003e [--username \u003cUSERNAME\u003e --password \u003cPASSWORD\u003e]\n   ```\n\n#### For Windows:\n\n1. Download the latest release for Windows from GitHub releases\n2. Extract the downloaded ZIP archive\n3. Navigate to the extracted folder.\n4. Open a command prompt in this directory.\n5. Run the proxy:\n\n   ```bash\n   proxy_name.exe --port \u003cPORT\u003e [--username \u003cUSERNAME\u003e --password \u003cPASSWORD\u003e]\n   ```\n\n#### From Source\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/xzeldon/http-proxy-server.git\ncd http-proxy-server\n```\n\n2. Run the proxy:\n```bash\ngo run main.go --port \u003cPORT\u003e [--username \u003cUSERNAME\u003e --password \u003cPASSWORD\u003e]\n```\n\nBy default, the proxy will run on port `3000`. If both `--username` and `--password` are omitted, authentication will be bypassed.\n\nFor example:\n\n- To run the proxy on port `1489` without authentication:\n```bash\ngo run main.go --port 1489\n```\n\n- To run the proxy on port `1489` with authentication:\n```bash\ngo run main.go --port 1489 --username admin --password admin123\n```\n\n### Authentication\n\nIf you specify both `--username` and `--password` when starting the proxy, it will enforce Basic Proxy Authentication with the given credentials. If these parameters are omitted, the proxy will not require authentication.\n\n### License\n\nThis project is licensed under the MIT License.","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxzeldon%2Fhttp-proxy-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxzeldon%2Fhttp-proxy-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxzeldon%2Fhttp-proxy-server/lists"}