yoinkdvr/README.md

26 lines
794 B
Markdown
Raw Permalink Normal View History

2024-01-15 23:11:53 +01:00
# YoinkDVR
Proxy for AgentDVR to get a "valid" license.
> Note: This is **not** a business license. It is literally just so that AgentDVR will shut up about the license being
> weird.
## Setup
1. Generate a self-signed certificate for `www.ispyconnect.com` and place it in the `ssl` directory. (I recommend
using [step](https://smallstep.com/docs/step-cli/installation/))
```shell
step certificate create ssl data/ssl.crt data/ssl.key \
--profile self-signed --subtle \
--san www.ispyconnect.com
```
2. Add the SSL certificate to your host's trusted root certificates.
```shell
sudo cp data/ssl.crt /usr/local/share/ca-certificates/yoinkdvr.crt
sudo update-ca-certificates
```
3. Run both containers:
```shell
docker-compose up -d
```