mirror of
https://github.com/Daichimarukana/uwuzu.git
synced 2026-06-04 19:14:41 +00:00
19 lines
499 B
PHP
19 lines
499 B
PHP
<?php
|
|
$activitypub_file = "../../server/activitypub.txt";
|
|
if(file_get_contents($activitypub_file) === "true"){
|
|
header("Content-Type: application/json; charset=utf-8");
|
|
|
|
$domain = $_SERVER['HTTP_HOST'];
|
|
|
|
$item = array(
|
|
"links" => [
|
|
array(
|
|
"rel" => "http://nodeinfo.diaspora.software/ns/schema/2.1",
|
|
"href" => "https://".$domain."/nodeinfo/2.1",
|
|
),
|
|
],
|
|
);
|
|
|
|
echo json_encode($item, JSON_UNESCAPED_UNICODE);
|
|
}
|
|
?>
|