Let's Host Things!
Let's try hosting ConvertX

A Non-Exhaustive List of Cool Things to Self Host:
Some cool services we use:
Last updated

Last updated
# docker-compose.yml
services:
convertx:
image: ghcr.io/c4illin/convertx
container_name: convertx
restart: unless-stopped
ports:
- "3000:3000"
environment:
- JWT_SECRET=aLongAndSecretStringUsedToSignTheJSONWebToken1234 # will use randomUUID() if unset
# - HTTP_ALLOWED=true # uncomment this if accessing it over a non-https connection
volumes:
- ./data:/app/datasudo vim /etc/cloudflared/config.yml - hostname: convert.<domain-name>.<tld>
service: http://localhost:3000sudo cloudflared tunnel route dns <TUNNEL-UUID or TUNNEL-NAME> convert.<domain-name>.<tld>sudo systemctl restart cloudflared