{"id":43099520,"url":"https://github.com/brandonbothell/gander","last_synced_at":"2026-01-31T17:08:53.850Z","repository":{"id":335218454,"uuid":"1021841434","full_name":"brandonbothell/gander","owner":"brandonbothell","description":"A home security camera application built for self-hosting and easy code customization.","archived":false,"fork":false,"pushed_at":"2026-01-09T10:02:21.000Z","size":3169,"stargazers_count":1,"open_issues_count":34,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-29T20:58:45.870Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/brandonbothell.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2025-07-18T03:22:43.000Z","updated_at":"2026-01-09T10:47:04.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/brandonbothell/gander","commit_stats":null,"previous_names":["brandonbothell/gander"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/brandonbothell/gander","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brandonbothell%2Fgander","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brandonbothell%2Fgander/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brandonbothell%2Fgander/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brandonbothell%2Fgander/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/brandonbothell","download_url":"https://codeload.github.com/brandonbothell/gander/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brandonbothell%2Fgander/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28948358,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T14:26:55.697Z","status":"ssl_error","status_checked_at":"2026-01-31T14:26:52.545Z","response_time":128,"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":[],"created_at":"2026-01-31T17:08:53.185Z","updated_at":"2026-01-31T17:08:53.839Z","avatar_url":"https://github.com/brandonbothell.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Gander\n\nGo through `config.example.json`, `web/config.example.json`, `greenlock.d/config.example.json`, and `.env.example` and replace the placeholders with real values, then rename the files to `config.json`, `web/config.json`, `greenlock.d/config.json`, and `.env` respectively.\n\nEnsure that you configure a reverse proxy such as nginx to forward requests to the server at http://localhost:PORT (port 3000 by default), setting at a minimum the X-Real-IP header in your nginx configuration file to $remote_addr like so:\n\n```conf\n# Gander HTTPS server configuration\nserver {\n  listen\t443\tssl;\n  listen\t[::]:443 ssl;\n  http2 on;\n  server_name example.tld\n\n  ssl_certificate /path/to/gander/greenlock.d/live/example.tld/fullchain.pem;\n  ssl_certificate_key /path/to/gander/greenlock.d/live/example.tld/privkey.pem;\n  ssl_trusted_certificate /path/to/gander/greenlock.d/live/example.tld/fullchain.pem;\n  add_header Strict-Transport-Security \"max-age=31536000;\";\n\n  location / {\n    proxy_pass http://localhost:3000;\n    proxy_set_header Host $host;\n    proxy_set_header X-Real-IP $remote_addr;\n    # If you use Cloudflare proxying, replace $remote_addr with $http_cf_connecting_ip\n    # See https://developers.cloudflare.com/support/troubleshooting/restoring-visitor-ips/restoring-original-visitor-ips/#nginx-1\n    # alternatively use ngx_http_realip_module\n    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\n    proxy_set_header X-Forwarded-Proto $scheme;\n  }\n\n  error_page\t500 502 503 504\t/50x.html;\n  location = /50x.html {\n    root\t/usr/share/nginx/html;\n  }\n}\n```\n\nEnsure you have ffmpeg v7+ installed on the server. ffmpeg `v7.1.2` is known to work.\n\nRun the `yarn` command, bearing in mind this program is known to work with node v20+ installed via `nvm` and yarn support enabled via `corepack`. Latest tested node version: `v25.2.1`\n\n## Important note!\n\n**You _need_ to start the server and open the client at port 80 or 443 at least once in the configuration it comes in** for greenlock-express to generate SSL certificates. Unfortunately, in order to setup your reverse proxy software to bind to ports 80 and 443 correctly, for now you have to edit `source/camera.ts`, `Ctrl + F` for \"`.serve(app)`\" in the source code, comment that line out, uncomment the lines consisting of a call to `.ready(...)` directly above the `.serve(app)` line, and finally uncomment the imports from `http` and `https` at the top of the file.\n\n### Starting the server\n\nRun `yarn build` and `yarn start`, making sure you don't have anything bound to the ports that are used by the software. Connect to a port exposed by your reverse proxy, ensuring that it points to the SSL certificates generated by greenlock.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrandonbothell%2Fgander","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbrandonbothell%2Fgander","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrandonbothell%2Fgander/lists"}