instances.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. // this file exists to separate instance data from the actual about page
  3. // HTML, and to make it easier to add/modify instances cleanly.
  4. $instancelist = [
  5. [
  6. "name" => "lolcat's instance (master)",
  7. "address" => [
  8. "uri" => "https://4get.ca/",
  9. "displayname" => "4get.ca"
  10. ],
  11. "altaddresses" => [
  12. [
  13. // 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 Chilean 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" => "zzls's United States instance",
  35. "address" => [
  36. "uri" => "https://4getus.zzls.xyz/",
  37. "displayname" => "4getus.zzls.xyz"
  38. ],
  39. "altaddresses" => [
  40. [
  41. "uri" => "http://4getus.zzlsghu6mvvwyy75mvga6gaf4znbp3erk5xwfzedb4gg6qqh2j6rlvid.onion",
  42. "displayname" => "tor"
  43. ]
  44. ]
  45. ],
  46. [
  47. "name" => "4get on a silly computer",
  48. "address" => [
  49. "uri" => "https://4get.silly.computer",
  50. "displayname" => "4get.silly.computer"
  51. ],
  52. "altaddresses" => [
  53. [
  54. "uri" => "https://4get.cynic.moe/",
  55. "displayname" => "fallback domain"
  56. ]
  57. ]
  58. ]
  59. ]
  60. ?>