https://github.com/tsunematsu21/live-streaming
The IaC for building live streaming server
https://github.com/tsunematsu21/live-streaming
ansible docker docker-compose hls hls-live-streaming nginx nginx-rtmp terraform
Last synced: 2 months ago
JSON representation
The IaC for building live streaming server
- Host: GitHub
- URL: https://github.com/tsunematsu21/live-streaming
- Owner: tsunematsu21
- License: mit
- Created: 2019-12-07T10:10:52.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-24T23:25:57.000Z (over 3 years ago)
- Last Synced: 2026-04-12T01:42:46.287Z (2 months ago)
- Topics: ansible, docker, docker-compose, hls, hls-live-streaming, nginx, nginx-rtmp, terraform
- Language: HCL
- Homepage:
- Size: 16.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Live Streaming Server
[](LICENSE)
## Pre-requisites
* **[Docker](https://www.docker.com/)**
A container platform.
## Getting started
Provision AWS resources by [Terraform](https://www.terraform.io/).
```bash
# Set environment variables
$ export AWS_ACCESS_KEY_ID=""
$ export AWS_SECRET_ACCESS_KEY=""
$ export AWS_DEFAULT_REGION=""
$ export PUBLIC_KEY=""
# Provision AWS resources
$ docker-compose run --rm terraform init
$ docker-compose run --rm terraform plan
$ docker-compose run --rm terraform apply
```