server-config.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "replicationScheduler": {
  3. "autostart": true,
  4. "partialReplication": null
  5. },
  6. "pub": true,
  7. "local": true,
  8. "friends": {
  9. "dunbar": 300,
  10. "hops": 2
  11. },
  12. "gossip": {
  13. "connections": 20,
  14. "local": true,
  15. "friends": true,
  16. "seed": true,
  17. "global": true
  18. },
  19. "connections": {
  20. "incoming": {
  21. "net": [
  22. {
  23. "scope": "public",
  24. "transform": "shs",
  25. "port": 8008
  26. },
  27. {
  28. "scope": "device",
  29. "transform": "shs",
  30. "port": 8008
  31. }
  32. ],
  33. "tunnel": [
  34. {
  35. "scope": "public",
  36. "portal": "@1wOEiCjJJ0nEs1OABUIV20valZ1LHUsfHJY/ivBoM8Y=.ed25519",
  37. "transform": "shs"
  38. }
  39. ],
  40. "onion": [
  41. {
  42. "scope": "public",
  43. "transform": "shs"
  44. }
  45. ],
  46. "ws": [
  47. {
  48. "scope": "public",
  49. "transform": "shs"
  50. }
  51. ]
  52. },
  53. "outgoing": {
  54. "net": [
  55. {
  56. "transform": "shs"
  57. }
  58. ],
  59. "ws": [
  60. {
  61. "transform": "shs"
  62. }
  63. ],
  64. "tunnel": [
  65. {
  66. "transform": "shs"
  67. }
  68. ]
  69. }
  70. }
  71. }