michaelnet/README.md

37 lines
819 B
Markdown
Raw Normal View History

2023-05-26 12:15:42 -07:00
# Michael's Homelab
2023-05-26 12:05:53 -07:00
## Hosts & Services
2023-05-26 12:05:53 -07:00
### Cuddlefish
2023-05-26 12:15:42 -07:00
![CentOS](https://img.shields.io/badge/centos%207-002260?style=for-the-badge&logo=centos&logoColor=F0F0F0)
- `git.michaellisano.com`
2023-05-26 12:05:53 -07:00
### Rocktiplex
2023-05-26 12:15:42 -07:00
![Rocky Linux](https://img.shields.io/badge/-Rocky%20Linux%209-%2310B981?style=for-the-badge&logo=rockylinux&logoColor=white)
2023-06-19 11:33:40 -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
...
```
2023-06-19 11:33:40 -07:00
Then in this case the name of the target service 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