View Single Post
  #2  
Old 01-23-2018, 11:06 PM
The_Beast's Avatar
The_Beast
Discordant
 
Join Date: May 2016
Location: Under a rock
Posts: 290
Default

This is what I use for (private) "outside" connections for friends to connect.

Code:
{
     "server" : {
          "chatserver" : {
               "host" : "127.0.0.1",
               "port" : "7778"
          },
          "database" : {
               "db" : "peq",
               "host" : "127.0.0.1",
               "password" : "password",
               "port" : "3306",
               "username" : "username"
          },
          "mailserver" : {
               "host" : "127.0.0.1",
               "port" : "7778"
          },
          "qsdatabase" : {
               "db" : "peq",
               "host" : "127.0.0.1",
               "password" : "password",
               "port" : "3306",
               "username" : "username"
          },
          "world" : {
               "address" : "external-IP",
               "http" : {
                    "enabled" : "false",
                    "mimefile" : "mime.types",
                    "port" : "9080"
               },
               "key" : "asdfghjklzxcvbnmqwerty",
               "localaddress" : "192.168.X.X",
               "loginserver" : {
                    "account" : "username",
                    "host" : "192.168.X.X",
                    "password" : "password",
                    "port" : "5998"
               },
               "longname" : "PEQ TESTBOX",
               "shortname" : "peqtestbox",
               "tcp" : {
                    "ip" : "127.0.0.1",
                    "port" : "9000",
                    "telnet" : "disable"
               }
          },
          "zones" : {
               "defaultstatus" : "0",
               "ports" : {
                    "high" : "7500",
                    "low" : "7000"
               }
          }
     }
}
Reply With Quote