Files
2025-07-14 09:53:08 +02:00

18 lines
357 B
PHP

<?php
// Set content type to JSON
header('Content-Type: application/json');
// Optional: allow cross-origin requests (if needed)
header('Access-Control-Allow-Origin: *');
// Define static list of peers
$peers = [
"woof.tech",
"mastodon.social",
"mas.to",
"mastodon.cloud"
];
// Return as JSON
echo json_encode($peers, JSON_PRETTY_PRINT);