chore: rename mclogs filenames, asset paths, and runtime identifiers

Two file renames (docker/mclogs.ini -> docker/iblogs.ini,
web/public/css/mclogs.css -> web/public/css/iblogs.css) plus the
internal references that pointed at them (Dockerfile COPY directive,
the linux user name in the container).

Also catches the runtime identifier renames: env-var prefix MCLOGS_*
-> IBLOGS_* (compose files), browser cookie name MCLOGS_SETTINGS ->
IBLOGS_SETTINGS (web/public/js/log.js), production image tag
ghcr.io/aternosorg/mclogs:2 -> ghcr.io/indifferentketchup/iblogs:2,
and the README walk-through with the new branding.

example.config.json branding strings (legal contact, mclo.gs frontend
name) and visible UI text (taglines, meta descriptions) are deferred
to a separate branding commit.
This commit is contained in:
2026-05-01 22:11:46 +00:00
parent 4aeebf3732
commit 8f0b067e38
7 changed files with 31 additions and 31 deletions

View File

@@ -1,6 +1,6 @@
services:
web:
image: ghcr.io/aternosorg/mclogs:2
image: ghcr.io/indifferentketchup/iblogs:2
restart: always
ports:
# Expose HTTP (80) and HTTPS (443)
@@ -9,16 +9,16 @@ services:
- "443:443"
- "443:443/udp"
environment:
# Set this to your domain (e.g., mclogs.example.com) to enable Auto-SSL.
# Set this to your domain (e.g., iblogs.example.com) to enable Auto-SSL.
# If running behind a proxy (Cloudflare/Nginx), set to ":80" to disable Auto-SSL.
SERVER_NAME: :80
MCLOGS_MONGODB_URL: mongodb://mongo:27017
MCLOGS_MONGODB_DATABASE: mclogs
IBLOGS_MONGODB_URL: mongodb://mongo:27017
IBLOGS_MONGODB_DATABASE: iblogs
# Optional MCLOGS configuration
# Optional IBLOGS configuration
# See README.md for full list of available options
# MCLOGS_FRONTEND_NAME: "mclogs"
# IBLOGS_FRONTEND_NAME: "iblogs"
volumes:
# For caddy cache (SSL certificates)