├── .env ├── .github └── FUNDING.yml ├── .gitignore ├── README.md ├── conduit └── wellknown.conf ├── docker-compose.yml ├── nitter.conf ├── rules.json └── settings.yml /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethforprivacy/self-hosted-services/HEAD/.env -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethforprivacy/self-hosted-services/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | letsencrypt/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethforprivacy/self-hosted-services/HEAD/README.md -------------------------------------------------------------------------------- /conduit/wellknown.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethforprivacy/self-hosted-services/HEAD/conduit/wellknown.conf -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethforprivacy/self-hosted-services/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /nitter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethforprivacy/self-hosted-services/HEAD/nitter.conf -------------------------------------------------------------------------------- /rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethforprivacy/self-hosted-services/HEAD/rules.json -------------------------------------------------------------------------------- /settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethforprivacy/self-hosted-services/HEAD/settings.yml --------------------------------------------------------------------------------