Advertisement
Guest User

blogs_mysql_config.lua

a guest
Sep 4th, 2018
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.59 KB | None | 0 0
  1. bLogs.Config.MySQL = {} local MySQL = bLogs.Config.MySQL
  2.  
  3. --[[
  4.  
  5.     This should be pretty self explanatory.
  6.  
  7.     WARNING: Don't use "localhost"! It doesn't work with Garry's Mod!
  8.              Use 127.0.0.1 instead.
  9.  
  10.     If your user account doesn't have a password (not recommended) leave the Password
  11.     field blank.
  12.  
  13. ]]
  14.  
  15. MySQL.Enabled  = true
  16. MySQL.Host     = "mysql.hexanenetworks.com"
  17. MySQL.Username = "vanityga_jack"
  18. MySQL.Password = "Scooby123?"
  19. MySQL.Database = "vanityga_blogs"
  20. MySQL.Port     = 3306
  21. MySQL.ServerID = "Server 1" -- This must be unique to the server to uniquely identify it.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement