{"id":15676946,"url":"https://github.com/remram44/matrix-helm","last_synced_at":"2026-04-08T18:03:23.326Z","repository":{"id":66117813,"uuid":"591356331","full_name":"remram44/matrix-helm","owner":"remram44","description":"A Helm Chart for matrix.org (Synapse and Element Web)","archived":false,"fork":false,"pushed_at":"2026-01-28T21:26:21.000Z","size":248,"stargazers_count":33,"open_issues_count":1,"forks_count":14,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-29T12:09:12.819Z","etag":null,"topics":["helm-charts","matrix"],"latest_commit_sha":null,"homepage":"","language":"Go Template","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/remram44.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":"2023-01-20T15:00:58.000Z","updated_at":"2026-01-28T21:26:09.000Z","dependencies_parsed_at":"2023-09-29T17:53:09.266Z","dependency_job_id":"35062f1f-322b-417b-8c15-5e425e673aa1","html_url":"https://github.com/remram44/matrix-helm","commit_stats":{"total_commits":195,"total_committers":3,"mean_commits":65.0,"dds":0.01538461538461533,"last_synced_commit":"4fe2a5dfbdf87dd1641c18389dc4b5a0082fcae2"},"previous_names":[],"tags_count":196,"template":false,"template_full_name":null,"purl":"pkg:github/remram44/matrix-helm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remram44%2Fmatrix-helm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remram44%2Fmatrix-helm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remram44%2Fmatrix-helm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remram44%2Fmatrix-helm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/remram44","download_url":"https://codeload.github.com/remram44/matrix-helm/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remram44%2Fmatrix-helm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29319236,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-10T20:44:44.282Z","status":"ssl_error","status_checked_at":"2026-02-10T20:44:43.393Z","response_time":65,"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":["helm-charts","matrix"],"created_at":"2024-10-03T16:07:34.618Z","updated_at":"2026-02-10T22:01:19.475Z","avatar_url":"https://github.com/remram44.png","language":"Go Template","readme":"# Helm chart for Matrix (Synapse + Element)\n\nYou can use this Helm chart to deploy Synapse, its backing PostgreSQL database, and the Element-Web frontend.\n\n```\nhelm repo add matrix https://remram44.github.io/matrix-helm\nhelm install chat matrix/matrix --namespace chat -f values.yaml\n```\n\nFor example, to deploy both Synapse and Element at `chat.example.org`, with the domain part being simply `example.org` (e.g. `@user:example.org`, `#room:example.org`):\n\n```yaml\nhomeserverConfig:\n  server_name: example.org\n  public_baseurl: https://chat.example.org/\n  web_client_location: https://chat.example.org/\n  email:\n    app_name: Example Chat\ningress:\n  enabled: true\n  hosts:\n    - chat.example.org\n  tls:\n    - hosts:\n        - chat.example.org\n        - example.org\nelement:\n  config:\n    default_server_config:\n      m.homeserver:\n        base_url: https://chat.example.org\n        server_name: Example Chat\n  ingress:\n    enabled: true\n    host: chat.example.org\n```\n\nYou can also use a different domain for Synapse and Element, for example:\n\n```yaml\nhomeserverConfig:\n  server_name: example.org\n  public_baseurl: https://synapse.example.org/\n  web_client_location: https://element.example.org/\n  email:\n    app_name: Example Chat\ningress:\n  enabled: true\n  hosts:\n    - synapse.example.org\n  tls:\n    - hosts:\n        - synapse.example.org\n        - example.org\nelement:\n  config:\n    default_server_config:\n      m.homeserver:\n        base_url: https://synapse.example.org\n        server_name: Example Chat\n  ingress:\n    enabled: true\n    host: element.example.org\n```\n\nSynapse can be hosted directly on your root domain (e.g. `example.org`) as well. It just exposes `/_matrix`, `/_synapse` and optionally `/.well-known/matrix`.\nIf Synapse is hosted on a subdomain (e.g. `synapse.example.org`) and you want to use federation via `.well-known`, make sure `/.well-known/matrix` is available on your root domain (e.g. `example.org`) - for example by deploying an additional Ingress.\n\nFor a list of the settings allowed in `homeserverConfig`, check out [Synapse's own documentation](https://element-hq.github.io/synapse/latest/usage/configuration/config_documentation.html).\n\n## Troubleshooting\n\n### path /.well-known/matrix cannot be used with pathType Prefix\n\nIf you use DNS records for federation, you can set `ingress.exposeWellKnown` to `false`.\nOtherwise you need to relax the ingress-nginx controller validation by setting `controller.config.strict-validate-path-type` to `\"false\"`.\nSee: https://github.com/kubernetes/ingress-nginx/issues/11176\n\n### matrix-federation://matrix.org/\\_matrix/federation/...: HttpResponseException('401: Unauthorized')\n\nYou need to advertise your Matrix server via DNS SRV record or `.well-known` path on your root domain (see notes above).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fremram44%2Fmatrix-helm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fremram44%2Fmatrix-helm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fremram44%2Fmatrix-helm/lists"}