Files
mehl.mx/static/comments/config.php
Max Mehl e13612f9e8
All checks were successful
Website build and deploy / build (push) Successful in 1m5s
fix: overhaul comments system
2026-02-23 17:39:04 +01:00

16 lines
628 B
PHP

<?php
/*
SPDX-License-Identifier: CC0-1.0
SPDX-FileCopyrightText: 2019 Max Mehl <mail@mehl.mx>
*/
$config = [
'mastodon-instance' => 'https://mastodon.social', // URL of your Mastodon instance
'user-id' => 379833, // Your Mastodon-ID. A bit tricky to find out, the API might help
// the URL of your blog. All toots are searched for this string
// please use https?:// as schema
'search-url' => 'https?://mehl.mx',
'cache_toots' => 1800, // seconds to cache toots
'cache_comments' => 300, // seconds to cache comments (per ID)
'debug' => true // writes some debug messages in error_log
];