{"id":13626078,"url":"https://github.com/svenstaro/proxyboi","last_synced_at":"2025-04-06T23:18:08.868Z","repository":{"id":37733404,"uuid":"201124672","full_name":"svenstaro/proxyboi","owner":"svenstaro","description":"A super simple reverse proxy with TLS support","archived":false,"fork":false,"pushed_at":"2024-08-01T11:41:44.000Z","size":1137,"stargazers_count":95,"open_issues_count":15,"forks_count":12,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-03-30T21:08:48.451Z","etag":null,"topics":["https","proxy","reverse-proxy","rust","ssl","tls"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/svenstaro.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"publiccode":null,"codemeta":null}},"created_at":"2019-08-07T20:39:51.000Z","updated_at":"2024-12-23T11:35:35.000Z","dependencies_parsed_at":"2024-10-22T20:10:45.368Z","dependency_job_id":null,"html_url":"https://github.com/svenstaro/proxyboi","commit_stats":null,"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/svenstaro%2Fproxyboi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/svenstaro%2Fproxyboi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/svenstaro%2Fproxyboi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/svenstaro%2Fproxyboi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/svenstaro","download_url":"https://codeload.github.com/svenstaro/proxyboi/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247563942,"owners_count":20958971,"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","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":["https","proxy","reverse-proxy","rust","ssl","tls"],"created_at":"2024-08-01T21:02:09.360Z","updated_at":"2025-04-06T23:18:08.844Z","avatar_url":"https://github.com/svenstaro.png","language":"Rust","funding_links":[],"categories":["Rust"],"sub_categories":[],"readme":"# proxyboi\n\n\u003ca href=\"https://repology.org/project/proxyboi/versions\"\u003e\u003cimg align=\"right\" src=\"https://repology.org/badge/vertical-allrepos/proxyboi.svg\" alt=\"Packaging status\"\u003e\u003c/a\u003e\n\n[![CI](https://github.com/svenstaro/proxyboi/workflows/Build/badge.svg)](https://github.com/svenstaro/proxyboi/actions)\n[![Docker Cloud Build Status](https://img.shields.io/docker/cloud/build/svenstaro/proxyboi)](https://cloud.docker.com/repository/docker/svenstaro/proxyboi/)\n[![Crates.io](https://img.shields.io/crates/v/proxyboi.svg)](https://crates.io/crates/proxyboi)\n[![license](http://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/svenstaro/proxyboi/blob/master/LICENSE)\n[![Stars](https://img.shields.io/github/stars/svenstaro/proxyboi.svg)](https://github.com/svenstaro/proxyboi/stargazers)\n[![Downloads](https://img.shields.io/github/downloads/svenstaro/proxyboi/total.svg)](https://github.com/svenstaro/proxyboi/releases)\n[![Lines of Code](https://tokei.rs/b1/github/svenstaro/proxyboi)](https://github.com/svenstaro/proxyboi)\n\n**A super simple reverse proxy with TLS support**\n\n## Installation\n\nWith [Rust installed](https://rustup.rs), use this command to install it:\n\n```sh\ncargo install proxyboi\n```\n\nYou can also download binaries from the [latest release on GitHub](https://github.com/svenstaro/proxyboi/releases/latest).\n\n## How to run\n\nIn order to listen for proxy requests on all local interfaces on port 8080 and proxy them to a service running at example.com, do:\n\n    proxyboi -l 0.0.0.0:8080 http://example.com\n\nYou can also feed your TLS certificates into it:\n\n    proxyboi -l 0.0.0.0:8080 --cert mycert.pem --key mykey.key http://example.com\n\nYou can see a detailed (and pretty!) verbose log using `-v`:\n\n    proxyboi -l 0.0.0.0:8080 http://example.com -v\n\n![Pretty log](pretty_log.png)\n\n## Usage\n\n    proxyboi 0.5.0\n    Sven-Hendrik Haase \u003csvenstaro@gmail.com\u003e\n    A super simple reverse proxy with TLS support\n\n    USAGE:\n        proxyboi [FLAGS] [OPTIONS] \u003cupstream\u003e\n\n    ARGS:\n        \u003cupstream\u003e    Upstream server to proxy to (eg. http://localhost:8080)\n\n    FLAGS:\n        -h, --help        Prints help information\n        -k, --insecure    Allow connections against upstream proxies with invalid TLS certificates\n        -q, --quiet       Be quiet (log nothing)\n        -v, --verbose     Be verbose (log data of incoming and outgoing requests)\n        -V, --version     Prints version information\n\n    OPTIONS:\n        -l, --listen \u003clisten\u003e                          Socket to listen on [default: 0.0.0.0:8080]\n            --response-header \u003cresponse-headers\u003e...\n                Additional response headers to send to requesting client\n\n            --timeout \u003ctimeout\u003e\n                Connection timeout against upstream in seconds (including DNS name resolution)\n                [default: 5]\n\n            --cert \u003ctls-cert\u003e                          TLS cert to use\n            --key \u003ctls-key\u003e                            TLS key to use\n            --upstream-header \u003cupstream-headers\u003e...    Additional headers to send to upstream server\n\n## Releasing\n\nThis is mostly a note for me on how to release this thing:\n\n- Make sure `CHANGELOG.md` is up to date.\n- `cargo release --dry-run \u003cversion\u003e`\n- `cargo release \u003cversion\u003e`\n- Releases will automatically be deployed by Github Actions.\n- Docker images will automatically be built by Docker Hub.\n- Update Arch package.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsvenstaro%2Fproxyboi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsvenstaro%2Fproxyboi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsvenstaro%2Fproxyboi/lists"}