instances.php 1.4 KB

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