├── .env.example ├── .gitignore ├── README.md ├── docker-compose.yml └── nginx.conf /.env.example: -------------------------------------------------------------------------------- 1 | STREAM_KEY_TWITCH=VALUE -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalfaro18/self-hosted-restream/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalfaro18/self-hosted-restream/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalfaro18/self-hosted-restream/HEAD/nginx.conf --------------------------------------------------------------------------------