diff options
| author | fusion32 <marcopuzziello@gmail.com> | 2025-10-19 19:17:37 -0300 |
|---|---|---|
| committer | fusion32 <marcopuzziello@gmail.com> | 2025-10-19 19:17:37 -0300 |
| commit | 0ff6217227ce551d6c91524c8e7fd37352e20490 (patch) | |
| tree | fee2e9da746115fda57ca6123952d614afd283dd /config.cfg.dist | |
| parent | eba55f8361fc36179e36bf8a3cea5067b5341e37 (diff) | |
| download | querymanager-0ff6217227ce551d6c91524c8e7fd37352e20490.tar.gz querymanager-0ff6217227ce551d6c91524c8e7fd37352e20490.zip | |
add include path for PostgreSQL + overall cleanup
Some distributions place libpq headers under /usr/include/postgresql
which is why it's added to the include path. And even though we don't
support it yet, the same happens with MariaDB, with headers being
placed under /usr/include/mariadb.
Diffstat (limited to 'config.cfg.dist')
| -rw-r--r-- | config.cfg.dist | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/config.cfg.dist b/config.cfg.dist index 26f7a21..3d5c685 100644 --- a/config.cfg.dist +++ b/config.cfg.dist @@ -22,14 +22,14 @@ PostgreSQL.SSLMode = "" PostgreSQL.SSLRootCert = "" PostgreSQL.MaxCachedStatements = 100 -# MySQL/MariaDB Config -MySQL.Host = "localhost" -MySQL.Port = "3306" -MySQL.DBName = "tibia" -MySQL.User = "tibia" -MySQL.Password = "" -MySQL.UnixSocket = "" -MySQL.MaxCachedStatements = 100 +# MariaDB Config +MariaDB.Host = "localhost" +MariaDB.Port = "3306" +MariaDB.DBName = "tibia" +MariaDB.User = "tibia" +MariaDB.Password = "" +MariaDB.UnixSocket = "" +MariaDB.MaxCachedStatements = 100 # Connection Config QueryManagerPort = 7173 |
