21 lines
338 B
Markdown
21 lines
338 B
Markdown
# tvcloud
|
|
|
|
This project is a personal cloud of services:
|
|
- NextCloud
|
|
|
|
# Setup
|
|
|
|
1. Generate self-signed certificate.
|
|
|
|
```
|
|
openssl genpkey -algorithm RSA -out server.key
|
|
openssl req -new -x509 -key server.key -out server.crt -days 365
|
|
```
|
|
|
|
2. Make a `db.env` file. See `db.example.env`.
|
|
|
|
3. Start the services.
|
|
|
|
```
|
|
docker compose up -d
|
|
``` |