{"id":30285878,"url":"https://github.com/rubys/navigator","last_synced_at":"2026-05-16T08:33:05.057Z","repository":{"id":309201840,"uuid":"1035462386","full_name":"rubys/navigator","owner":"rubys","description":"Modern Go-based multi-tenant Rails proxy with HTTP caching, structured logging, and automatic process recovery","archived":false,"fork":false,"pushed_at":"2025-08-10T15:14:26.000Z","size":73,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-10T15:26:25.120Z","etag":null,"topics":["chi-router","go","http-cache","multi-tenant","process-management","proxy","rails","structured-logging"],"latest_commit_sha":null,"homepage":null,"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/rubys.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,"zenodo":null}},"created_at":"2025-08-10T13:04:04.000Z","updated_at":"2025-08-10T15:14:10.000Z","dependencies_parsed_at":"2025-08-16T03:18:24.104Z","dependency_job_id":null,"html_url":"https://github.com/rubys/navigator","commit_stats":null,"previous_names":["rubys/navigator"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/rubys/navigator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rubys%2Fnavigator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rubys%2Fnavigator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rubys%2Fnavigator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rubys%2Fnavigator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rubys","download_url":"https://codeload.github.com/rubys/navigator/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rubys%2Fnavigator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270769206,"owners_count":24642069,"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-08-16T02:00:11.002Z","response_time":91,"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":["chi-router","go","http-cache","multi-tenant","process-management","proxy","rails","structured-logging"],"created_at":"2025-08-16T20:44:13.808Z","updated_at":"2026-05-16T08:33:05.049Z","avatar_url":"https://github.com/rubys.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Navigator\n\nA lightweight web server for multi-tenant applications with on-demand process management. Deploy multiple customers or projects from a single configuration file.\n\n## What Can Navigator Do?\n\n- **Process management** - On-demand startup, auto-restart, graceful shutdown\n- **Multi-tenant hosting** - Isolated databases and processes per customer\n- **TurboCable WebSockets** - Built-in real-time support with 89% memory savings (no Redis needed)\n- **Static file serving** - High-performance direct filesystem access with try-files\n- **Authentication** - htpasswd support with flexible exclusions\n- **Hot reload** - Update configuration without restart\n- **Regional routing** - Smart routing with Fly-Replay\n- **Machine suspension** - Auto-suspend idle machines on Fly.io\n- **Structured logging** - Built-in Vector integration for log aggregation\n\n**[📚 Full Documentation](https://rubys.github.io/navigator/)**\n\n## Quick Start\n\n### Installation\n\n**Docker** (recommended):\n```dockerfile\nCOPY --from=samruby/navigator:latest /navigator /usr/local/bin/navigator\nCMD [\"navigator\", \"config/navigator.yml\"]\n```\n\n**Download Binary**:\n```bash\n# Linux (AMD64)\ncurl -L https://github.com/rubys/navigator/releases/latest/download/navigator-linux-amd64.tar.gz | tar xz\n\n# macOS (ARM64)\ncurl -L https://github.com/rubys/navigator/releases/latest/download/navigator-darwin-arm64.tar.gz | tar xz\n```\n\n**Build from Source**:\n```bash\ngit clone https://github.com/rubys/navigator.git\ncd navigator\nmake build\n```\n\n### Minimal Configuration\n\nCreate `config/navigator.yml`:\n\n```yaml\nserver:\n  listen: 3000\n  public_dir: ./public\n\napplications:\n  tenants:\n    - name: myapp\n      path: /\n      working_dir: /path/to/app\n```\n\n### Run Navigator\n\n```bash\n# With config file\n./bin/navigator config/navigator.yml\n\n# Reload configuration (no restart)\n./bin/navigator -s reload\n```\n\n## Documentation\n\n- **[Getting Started](https://rubys.github.io/navigator/getting-started/)** - Installation and first app\n- **[Configuration Reference](https://rubys.github.io/navigator/configuration/yaml-reference/)** - Complete YAML options\n- **[Examples](https://rubys.github.io/navigator/examples/)** - Copy-paste configurations\n- **[Use Cases](https://rubys.github.io/navigator/use-cases/)** - Real-world patterns\n- **[Features](https://rubys.github.io/navigator/features/)** - Detailed feature guides\n- **[Architecture](https://rubys.github.io/navigator/architecture/)** - Technical details\n\n## Production Ready\n\nTrusted in production serving 75+ customers across 8 countries with:\n- 81.2% test coverage\n- Cross-platform support (Linux, macOS, Windows)\n- Comprehensive documentation\n- Active development\n\n## License\n\nMIT License - see [LICENSE](LICENSE) file for details.\n\n## Links\n\n- [Documentation](https://rubys.github.io/navigator/)\n- [Releases](https://github.com/rubys/navigator/releases)\n- [Issues](https://github.com/rubys/navigator/issues)\n- [Discussions](https://github.com/rubys/navigator/discussions)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frubys%2Fnavigator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frubys%2Fnavigator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frubys%2Fnavigator/lists"}