summaryrefslogtreecommitdiff
path: root/data/instances.php
blob: aeb0707fa784247c232f19df842752658d5a2e87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
/*
this file exists to separate instance data from the actual about page
 HTML, and to make it easier to add/modify instances cleanly.
*/
$instancelist = [
    [
        "name" => "lolcat's instance (master)",
        "address" => [
            "uri" => "https://4get.ca/",
            "displayname" => "4get.ca"
        ],
        "altaddresses" => [ // all these address blocks will be linked in parentheses
            [               // e.g. 4get.ca (tor) (i2p) etc.
                "uri" => "http://4getwebfrq5zr4sxugk6htxvawqehxtdgjrbcn2oslllcol2vepa23yd.onion",
                "displayname" => "tor"
            ]
        ]
    ],
    [
        "name" => "zzls's instance",
        "address" => [
            "uri" => "https://4get.zzls.xyz/",
            "displayname" => "4get.zzls.xyz"
        ],
        "altaddresses" => [
            [
                "uri" => "http://4get.zzlsghu6mvvwyy75mvga6gaf4znbp3erk5xwfzedb4gg6qqh2j6rlvid.onion",
                "displayname" => "tor"
            ]
        ]
    ],
    [
        "name" => "4get on a silly computer",
        "address" => [
            "uri" => "https://4get.silly.computer",
            "displayname" => "4get.silly.computer"
        ],
        "altaddresses" => [
            [
                "uri" => "https://4get.cynic.moe/",
                "displayname" => "fallback domain"
            ]
        ]
    ],
]
?>