├── LICENSE ├── README.md └── matrix-synapse-riot ├── LICENSE ├── README.md └── terraform ├── .keys ├── do_token ├── domain_name ├── ipv6_cjdns ├── passwd_sysadmin └── ssh_fingerprint ├── main.tf ├── matrix-server ├── bootstrap-cjdns.sh ├── bootstrap-cleanup.sh ├── bootstrap-dehydrated.sh ├── bootstrap-post-dns.sh ├── bootstrap.sh ├── debian-20auto-upgrades ├── debian-50unattended-upgrades ├── dehydrated-config ├── dehydrated-hooks ├── ip6tables-rules ├── iptables-rules ├── nginx-chat ├── nginx-matrix ├── psql-setup.sh ├── riot-config.json ├── synapse-setup.sh └── synapse-startup.sh ├── providers.tf └── variables.tf /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/mesh-services/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/mesh-services/HEAD/README.md -------------------------------------------------------------------------------- /matrix-synapse-riot/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/mesh-services/HEAD/matrix-synapse-riot/LICENSE -------------------------------------------------------------------------------- /matrix-synapse-riot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/mesh-services/HEAD/matrix-synapse-riot/README.md -------------------------------------------------------------------------------- /matrix-synapse-riot/terraform/.keys/do_token: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /matrix-synapse-riot/terraform/.keys/domain_name: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /matrix-synapse-riot/terraform/.keys/ipv6_cjdns: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /matrix-synapse-riot/terraform/.keys/passwd_sysadmin: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /matrix-synapse-riot/terraform/.keys/ssh_fingerprint: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /matrix-synapse-riot/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/mesh-services/HEAD/matrix-synapse-riot/terraform/main.tf -------------------------------------------------------------------------------- /matrix-synapse-riot/terraform/matrix-server/bootstrap-cjdns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/mesh-services/HEAD/matrix-synapse-riot/terraform/matrix-server/bootstrap-cjdns.sh -------------------------------------------------------------------------------- /matrix-synapse-riot/terraform/matrix-server/bootstrap-cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/mesh-services/HEAD/matrix-synapse-riot/terraform/matrix-server/bootstrap-cleanup.sh -------------------------------------------------------------------------------- /matrix-synapse-riot/terraform/matrix-server/bootstrap-dehydrated.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/mesh-services/HEAD/matrix-synapse-riot/terraform/matrix-server/bootstrap-dehydrated.sh -------------------------------------------------------------------------------- /matrix-synapse-riot/terraform/matrix-server/bootstrap-post-dns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/mesh-services/HEAD/matrix-synapse-riot/terraform/matrix-server/bootstrap-post-dns.sh -------------------------------------------------------------------------------- /matrix-synapse-riot/terraform/matrix-server/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/mesh-services/HEAD/matrix-synapse-riot/terraform/matrix-server/bootstrap.sh -------------------------------------------------------------------------------- /matrix-synapse-riot/terraform/matrix-server/debian-20auto-upgrades: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/mesh-services/HEAD/matrix-synapse-riot/terraform/matrix-server/debian-20auto-upgrades -------------------------------------------------------------------------------- /matrix-synapse-riot/terraform/matrix-server/debian-50unattended-upgrades: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/mesh-services/HEAD/matrix-synapse-riot/terraform/matrix-server/debian-50unattended-upgrades -------------------------------------------------------------------------------- /matrix-synapse-riot/terraform/matrix-server/dehydrated-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/mesh-services/HEAD/matrix-synapse-riot/terraform/matrix-server/dehydrated-config -------------------------------------------------------------------------------- /matrix-synapse-riot/terraform/matrix-server/dehydrated-hooks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/mesh-services/HEAD/matrix-synapse-riot/terraform/matrix-server/dehydrated-hooks -------------------------------------------------------------------------------- /matrix-synapse-riot/terraform/matrix-server/ip6tables-rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/mesh-services/HEAD/matrix-synapse-riot/terraform/matrix-server/ip6tables-rules -------------------------------------------------------------------------------- /matrix-synapse-riot/terraform/matrix-server/iptables-rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/mesh-services/HEAD/matrix-synapse-riot/terraform/matrix-server/iptables-rules -------------------------------------------------------------------------------- /matrix-synapse-riot/terraform/matrix-server/nginx-chat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/mesh-services/HEAD/matrix-synapse-riot/terraform/matrix-server/nginx-chat -------------------------------------------------------------------------------- /matrix-synapse-riot/terraform/matrix-server/nginx-matrix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/mesh-services/HEAD/matrix-synapse-riot/terraform/matrix-server/nginx-matrix -------------------------------------------------------------------------------- /matrix-synapse-riot/terraform/matrix-server/psql-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/mesh-services/HEAD/matrix-synapse-riot/terraform/matrix-server/psql-setup.sh -------------------------------------------------------------------------------- /matrix-synapse-riot/terraform/matrix-server/riot-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/mesh-services/HEAD/matrix-synapse-riot/terraform/matrix-server/riot-config.json -------------------------------------------------------------------------------- /matrix-synapse-riot/terraform/matrix-server/synapse-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/mesh-services/HEAD/matrix-synapse-riot/terraform/matrix-server/synapse-setup.sh -------------------------------------------------------------------------------- /matrix-synapse-riot/terraform/matrix-server/synapse-startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/mesh-services/HEAD/matrix-synapse-riot/terraform/matrix-server/synapse-startup.sh -------------------------------------------------------------------------------- /matrix-synapse-riot/terraform/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/mesh-services/HEAD/matrix-synapse-riot/terraform/providers.tf -------------------------------------------------------------------------------- /matrix-synapse-riot/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/mesh-services/HEAD/matrix-synapse-riot/terraform/variables.tf --------------------------------------------------------------------------------