View Single Post
  #2  
Old 02-10-2018, 05:32 PM
revan553
Fire Beetle
 
Join Date: Feb 2018
Posts: 11
Default eqemu_config.json

NOTE: I've obfuscated the password here but it is properly set within my config file

Code:

{
	"server": {
		"zones": {
			"defaultstatus": "20",
			"ports": {
				"low": "7000",
				"high": "7100"
			}
		},
		"database": {
			"password": "<my pwd>",
			"db": "peq",
			"host": "127.0.0.1",
			"port": "3306",
			"username": "root"
		},
		"world": {
			"shortname": "DW",
			"longname": "D's World",
			"address": "192.168.0.8",
			"localaddress": "127.0.0.1",
			"loginserver": {
				"password": "",
				"host": "127.0.0.1",
				"port": "5998",
				"account": ""
			},
			"tcp": {
				"port": "9000",
				"telnet": "disable",
				"ip": "192.168.0.8"
			},
			"key": "some long random string",
			"http": {
				"mimefile": "mime.types",
				"port": "9080",
				"enabled": "false"
			}
		},
		"mailserver": {
			"host": "127.0.0.1",
			"port": "7778"
		},
		"chatserver": {
			"host": "127.0.0.1",
			"port": "7778"
		},
		"qsdatabase": {
			"host": "127.0.0.1",
			"port": "3306",
			"username": "root",
			"password": "<my pwd>",
			"db": "peq"
		}
	}
}
Reply With Quote