21 lines
317 B
Lua
21 lines
317 B
Lua
--
|
|
-- MySQL configs
|
|
-- Note: I highly recomend use of tmysql over mysqloo because mysqloo both slow and an extreme memory leak.
|
|
--
|
|
|
|
|
|
-- IP
|
|
plogs.cfg.IP = '0.0.0.0'
|
|
|
|
-- Port
|
|
plogs.cfg.Port = 3306
|
|
|
|
-- Database name
|
|
plogs.cfg.DB = 'plogs'
|
|
|
|
-- Username
|
|
plogs.cfg.User = 'example'
|
|
|
|
-- Password
|
|
plogs.cfg.Pass = '123'
|