File size: 1,173 Bytes
eb3e7cb 0aa1437 eb3e7cb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
#-----Connection Setting-----
Hosts = 0 # 0 for Internet, 1 for Localhost
port = 7878 # Change this to change the connect port
password = "admin" # VERY RECOMMAND CHANGE THIS DEFAULT PASSWORD TO ANYTHING ELSE
#----------------------------
#-----Other Setting-----
LogOnConsole = False # Change this to decide showing all server logs on program console or not
LoggerPath = "logs/"
ServerPath = "/content/drive/MyDrive/"
BanCount = 10
BanSeconds = 43200
PersistBan = True
#----------------------------
#DO NOT CHANGE BELOW UNLESS YOU KNOW WHAT YOU'RE DOING
#-----Logging Configure-----
Log_info = "Info"
Log_warning = "Warning"
Log_critical = "Critical"
Log_success = "Success"
Log_failed = "Failed"
Log_Incoming = "Incoming connection from {0}, target page {1}"
Log_format = "{0} | {1} : {2}"
Log_start = "Server is running now!\nEnter 'stop' to stop."
Log_stop = "Shutdowning..."
Log_wait = "Waiting for Server `{0}` to close"
#---------------------------
#-----Other Setting-----
encode_nt = "big5"
encode_unix = "utf-8"
IPs = ["0.0.0.0", "127.0.0.1"]
default_setup = "java -Xms1G -Xmx1G -jar {0} nogui"
default_jarFile = "server.jar"
#----------------------------
|