{"id":34130854,"url":"https://github.com/abinashphulkonwar/route-master","last_synced_at":"2026-03-09T08:32:46.528Z","repository":{"id":156330301,"uuid":"623809581","full_name":"abinashphulkonwar/route-master","owner":"abinashphulkonwar","description":"Route Master is a Go-based load balancer and reverse proxy, enabling users to efficiently distribute incoming traffic across multiple servers.","archived":false,"fork":false,"pushed_at":"2024-01-27T13:48:15.000Z","size":62,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-17T11:27:37.547Z","etag":null,"topics":["devops","go","infrastructure-as-code","load-balancer","monitoring-and-metrics","performance-optimization","reverse-proxy","scalability","web-server"],"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/abinashphulkonwar.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2023-04-05T06:14:43.000Z","updated_at":"2023-04-05T07:14:26.000Z","dependencies_parsed_at":"2023-12-14T19:53:54.680Z","dependency_job_id":"ec2fadfc-dcda-4b83-9860-a5ccbf9ad22e","html_url":"https://github.com/abinashphulkonwar/route-master","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/abinashphulkonwar/route-master","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abinashphulkonwar%2Froute-master","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abinashphulkonwar%2Froute-master/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abinashphulkonwar%2Froute-master/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abinashphulkonwar%2Froute-master/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/abinashphulkonwar","download_url":"https://codeload.github.com/abinashphulkonwar/route-master/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abinashphulkonwar%2Froute-master/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30287845,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-09T02:57:19.223Z","status":"ssl_error","status_checked_at":"2026-03-09T02:56:26.373Z","response_time":61,"last_error":"SSL_read: 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":["devops","go","infrastructure-as-code","load-balancer","monitoring-and-metrics","performance-optimization","reverse-proxy","scalability","web-server"],"created_at":"2025-12-15T00:39:31.953Z","updated_at":"2026-03-09T08:32:46.521Z","avatar_url":"https://github.com/abinashphulkonwar.png","language":"Go","readme":"# Route-Master\n\nRoute-Master is a lightweight, open-source load balancer and reverse proxy tool built in Go. It's designed to distribute incoming network traffic across multiple servers to improve performance, reliability, and scalability.\n\n## Features\n\n- Load balancing: Distribute incoming network traffic across multiple servers to optimize resource usage and avoid overloading any single server.\n- Reverse proxy: Serve as a gateway between clients and servers to protect the identity of the server and improve security.\n- Dynamic configuration: Update the routing rules and target servers in real-time, without requiring a restart or downtime.\n- HTTPS support: Route-Master supports HTTPS traffic, enabling secure communication between clients and servers.\n- Logging: Track and monitor incoming requests, server responses, and errors with detailed logs.\n\n# Installation\n\nTo install Route-Master, you need to have Go installed on your system. You can install it by following the instructions on the official website: https://golang.org/doc/install.\n\nOnce you have Go installed, you can download and install Route-Master using the following command:\n\n```sh\n$ go get github.com/abinashphulkonwar/route-master\n```\n## build binary for your operation system\n```\n$ go build github.com/abinashphulkonwar/route-master\n```\nor download [binary](https://github.com/abinashphulkonwar/route-master/releases/tag/v1.0.0)\n\n\n# Configuration\n\nRoute-Master uses a YAML configuration file to specify the routing rules and target servers. You can define multiple routes and their corresponding target servers in the configuration file. Here's an example configuration file:\n\n```yaml\nserver:\n  host: \"localhost\"\n  port: 3002\n\nnode:\n  - node1:\n    scheme: \"http\"\n    target:\n      - \"server1.8080\"\n      - \"server2.8081\"\n    path: \"/api\"\n  - node2:\n    scheme: \"http\"\n    target:\n      - \"server3:8443\"\n      - \"server4:8080\"\n    path: \"/auth\"\n```\n\nThis configuration file defines two routes: one for the /api path and another for the /auth path. The /api route targets server1 and server2, server1 listening on port 8080 and server2 listening on port 8081. The /auth route targets server3 and server4, server3 listening on port 8443 and server4 listening on port 8080\n\nYou can also specify additional settings such as load balancing method, health checks, and timeouts in the configuration file. For more information on configuring Route-Master, please refer to the documentation.\n\n# Usage\n\nTo start Route-Master, run the following command:\n\n```sh\n$ route-master -f config.yaml\n```\n\nThis will start Route-Master with the specified configuration file. You can then send requests to Route-Master using the defined routes and it will distribute the traffic across the target servers.\n\n# License\n\nRoute-Master is released under the MIT License. See the LICENSE file for more information.\n\n# Contributing\n\nWe welcome contributions to Route-Master! To contribute, please create a pull request with your changes. For major changes, please open an issue first to discuss what you would like to change.\n\n# Contact\n\nIf you have any questions or issues, please feel free to contact us at abinashphulkonwar98@gmail.com\n\n[![LinkedIn](https://img.shields.io/badge/-LinkedIn-blue?style=flat-square\u0026logo=Linkedin\u0026logoColor=white\u0026link=https://www.linkedin.com/in/abinash-phulkonwar-775b521a5/)](https://www.linkedin.com/in/abinash-phulkonwar-775b521a5/)\n\nThank you for using Route-Master!\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabinashphulkonwar%2Froute-master","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabinashphulkonwar%2Froute-master","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabinashphulkonwar%2Froute-master/lists"}