{"id":36924166,"url":"https://github.com/Kaliumhexacyanoferrat/GenHTTP.Gateway","last_synced_at":"2026-01-19T18:00:47.406Z","repository":{"id":34568809,"uuid":"180436410","full_name":"Kaliumhexacyanoferrat/GenHTTP.Gateway","owner":"Kaliumhexacyanoferrat","description":"Simple reverse proxy to provide various web applications over a single HTTPS entry point, e.g. in a home server scenario.","archived":false,"fork":false,"pushed_at":"2025-11-12T00:28:19.000Z","size":169,"stargazers_count":7,"open_issues_count":4,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-12T02:27:11.985Z","etag":null,"topics":["armv7","armv8","docker","docker-image","gateway","http-server","raspberry-pi","reverse-proxy","webserver"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/genhttp/gateway","language":"C#","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/Kaliumhexacyanoferrat.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,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2019-04-09T19:32:28.000Z","updated_at":"2025-11-12T00:28:21.000Z","dependencies_parsed_at":"2024-11-18T12:23:00.159Z","dependency_job_id":"5b2bbb2a-7b05-4cca-bd4b-9a6f0bb795c2","html_url":"https://github.com/Kaliumhexacyanoferrat/GenHTTP.Gateway","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Kaliumhexacyanoferrat/GenHTTP.Gateway","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kaliumhexacyanoferrat%2FGenHTTP.Gateway","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kaliumhexacyanoferrat%2FGenHTTP.Gateway/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kaliumhexacyanoferrat%2FGenHTTP.Gateway/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kaliumhexacyanoferrat%2FGenHTTP.Gateway/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Kaliumhexacyanoferrat","download_url":"https://codeload.github.com/Kaliumhexacyanoferrat/GenHTTP.Gateway/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kaliumhexacyanoferrat%2FGenHTTP.Gateway/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28578952,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T17:42:58.221Z","status":"ssl_error","status_checked_at":"2026-01-19T17:40:54.158Z","response_time":67,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["armv7","armv8","docker","docker-image","gateway","http-server","raspberry-pi","reverse-proxy","webserver"],"created_at":"2026-01-12T19:00:25.487Z","updated_at":"2026-01-19T18:00:47.385Z","avatar_url":"https://github.com/Kaliumhexacyanoferrat.png","language":"C#","funding_links":[],"categories":["C# #"],"sub_categories":[],"readme":"# GenHTTP Gateway\r\n\r\nThe GenHTTP Gateway provides a simple way to serve all your web applications over a single, HTTPS secured entry point. Compared to other reverse-proxy solutions such as [Traefik](https://github.com/containous/traefik), the gateway provides less features but is easier to configure for scenarios such as home servers. Supports HTTP/1.1, HTTP/2 and HTTP/3 via QUIC.\r\n\r\n![CI](https://github.com/Kaliumhexacyanoferrat/GenHTTP.Gateway/workflows/CI/badge.svg) [![Coverage](https://sonarcloud.io/api/project_badges/measure?project=GenHTTP.Gateway\u0026metric=coverage)](https://sonarcloud.io/dashboard?id=GenHTTP.Gateway) [![Docker](https://img.shields.io/docker/pulls/genhttp/gateway.svg)](https://hub.docker.com/r/genhttp/gateway)\r\n\r\n## Usage\r\n\r\nThe GenHTTP Gateway is available as a docker image on [DockerHub](https://hub.docker.com/r/genhttp/gateway). You will find examples on how to run and to configure the gateway there.\r\n\r\n## Development\r\n\r\nBuilding the gateway from source requires the [.NET SDK](https://dotnet.microsoft.com/download) to be installed.\r\nThe following commands will clone the repository and run the gateway on port 80:\r\n\r\n~~~bash\r\ngit clone https://github.com/Kaliumhexacyanoferrat/GenHTTP.Gateway.git\r\ncd GenHTTP.Gateway\r\ndotnet run\r\n~~~\r\n\r\nAs the default configuration uses `domain1.com` as an example, you may want to add the following entry to your `/etc/hosts` file (or `C:\\Windows\\System32\\drivers\\etc\\hosts` on Windows):\r\n\r\n~~~bash\r\n127.0.0.1 domain1.com\r\n~~~\r\n\r\nYou should then be able to open http://domain1.com/directory-browsing/ in your browser.\r\n\r\n## Building Docker Images\r\n\r\nTo build a docker image, run\r\n\r\n~~~bash\r\ndocker build -f Dockerfile.linux-x64 -t genhttp/gateway:linux-x64 .\r\n~~~\r\n\r\nTo build an image for a different platform simply select a different platform name.\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FKaliumhexacyanoferrat%2FGenHTTP.Gateway","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FKaliumhexacyanoferrat%2FGenHTTP.Gateway","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FKaliumhexacyanoferrat%2FGenHTTP.Gateway/lists"}