2023-05-26 12:05:53 -07:00
|
|
|
# Homelab
|
|
|
|
|
2023-06-19 11:27:48 -07:00
|
|
|
## Hosts & Services
|
2023-05-26 12:05:53 -07:00
|
|
|
|
|
|
|
### Cuddlefish
|
|
|
|
|
2023-06-19 11:27:48 -07:00
|
|
|
- `git.michaellisano.com`
|
2023-05-26 12:05:53 -07:00
|
|
|
|
|
|
|
### Rocktiplex
|
|
|
|
|
2023-06-19 11:27:48 -07:00
|
|
|
- `analytics.michaellisano.com`
|
|
|
|
|
|
|
|
|
|
|
|
## Dockerized Cloudflared Notes
|
|
|
|
|
|
|
|
If a docker-compose file looks like this:
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
services:
|
|
|
|
gitea-server:
|
|
|
|
image: gitea/gitea:1.19.3
|
|
|
|
...
|
|
|
|
gitea-cloudflared:
|
|
|
|
image: cloudflare/cloudflared
|
|
|
|
...
|
|
|
|
```
|
|
|
|
|
|
|
|
The name of the target services is `gitea-server`, and (per Docker's networking shenanigans), should be specified **directly by service name,** e.g.
|
|
|
|
|
|
|
|
```
|
|
|
|
https://git.michaellisano.com -> http://gitea-server:3000
|
|
|
|
```
|
2023-05-26 12:05:53 -07:00
|
|
|
|