Renames the repo directory and every podpuddle/PODPUDDLE reference across code, config, and docs to podsteadr/PODSTEADR (package names, Docker Compose project/service/volume names, env var names, UI/RSS strings). Existing Docker volume data (uploaded blobs, mediamtx recordings, the server's sqlite DB and its nostr identity key) was migrated to new podsteadr_-prefixed volumes with matching filenames so it isn't orphaned by the rename.
16 lines
631 B
Bash
16 lines
631 B
Bash
# Hostname or IP your users will reach this box on (no scheme, no port)
|
|
PUBLIC_HOST=localhost
|
|
|
|
# Where the podsteadr UI/API is reachable from browsers
|
|
PUBLIC_URL=http://${PUBLIC_HOST}:8095
|
|
|
|
# Public endpoints handed out for streaming / playback / uploads
|
|
MEDIAMTX_RTMP_PUBLIC=rtmp://${PUBLIC_HOST}:1935
|
|
MEDIAMTX_WHIP_PUBLIC=http://${PUBLIC_HOST}:8889
|
|
MEDIAMTX_HLS_PUBLIC=http://${PUBLIC_HOST}:8890
|
|
BLOSSOM_URL_DEFAULT=http://${PUBLIC_HOST}:8098
|
|
|
|
# Default nostr relays for NIP-53 live-event announcements (comma separated,
|
|
# changeable at runtime in Settings)
|
|
NOSTR_RELAYS=wss://relay.damus.io,wss://nos.lol,wss://relay.nostr.band
|