Comment to 'Jot Security'
Comment to Jot Security
  • @Alexey thank you! Now I feel better about installing jitsi and will work on that next.

    Can you please explain the domain field in config.json for jot server. I want to allow only my domain to reach it. Seems anything I add here is wrong.

    I will also keep checking for jot server release 😁🙏

    • Hello @Wise,

      Domains option allows you to specify which IP addresses are permitted to connect to the server for the Jot Messenger module. Here's how it works:

      If you want to allow specific IP addresses, you can list them one by one:

      "domains": ["127.0.0.1", "127.0.0.2"]
      

      In this example, only the IP addresses 127.0.0.1 and 127.0.0.2 are allowed to use the server. If you want to allow any IP address to connect to the server, you can use an asterisk (*):

        "domains": ["*"]
      

      In this case, any domain or IP address can use your server for the Jot Messenger module. In summary, listing specific IPs restricts access to those IPs only, while using * opens access to all domains.