Files
mehl.mx/static/comments/config.php

16 lines
629 B
PHP
Raw Normal View History

2024-12-27 15:45:17 +01:00
<?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',
2026-02-23 17:39:04 +01:00
'cache_toots' => 1800, // seconds to cache toots
2024-12-27 15:45:17 +01:00
'cache_comments' => 300, // seconds to cache comments (per ID)
2026-02-24 11:03:59 +01:00
'debug' => false // writes some debug messages in error_log
2024-12-27 15:45:17 +01:00
];