diff --git a/indiekit.config.mjs b/indiekit.config.mjs index 69c8b7f9..9c40303a 100644 --- a/indiekit.config.mjs +++ b/indiekit.config.mjs @@ -115,7 +115,7 @@ const nodeEnv = (process.env.NODE_ENV || "production").toLowerCase(); const debugEnabled = process.env.INDIEKIT_DEBUG === "1" || nodeEnv !== "production"; const siteName = process.env.SITE_NAME || "Indiekit"; const webmentionSenderMountPath = - process.env.WEBMENTION_SENDER_MOUNT_PATH || "/webmention-sender"; + process.env.WEBMENTION_SENDER_MOUNT_PATH || "/webmentions-sender"; const webmentionSenderTimeoutRaw = Number.parseInt( process.env.WEBMENTION_SENDER_TIMEOUT || "10000", 10, diff --git a/start.example.sh b/start.example.sh index ebf1df87..73bfab0e 100644 --- a/start.example.sh +++ b/start.example.sh @@ -121,7 +121,7 @@ start_webmention_poller() { WEBMENTION_SENDER_HOST="${WEBMENTION_SENDER_HOST:-127.0.0.1}" WEBMENTION_SENDER_PORT="${WEBMENTION_SENDER_PORT:-${PORT:-3000}}" - WEBMENTION_SENDER_PATH="${WEBMENTION_SENDER_MOUNT_PATH:-/webmention-sender}" + WEBMENTION_SENDER_PATH="${WEBMENTION_SENDER_MOUNT_PATH:-/webmentions-sender}" WEBMENTION_SENDER_ORIGIN="${WEBMENTION_SENDER_ORIGIN:-${PUBLICATION_URL:-${SITE_URL:-}}}" WEBMENTION_SENDER_INTERVAL="${WEBMENTION_SENDER_POLL_INTERVAL:-300}"