Files
fulpstation/config/dbconfig.txt
John Willard 66d243abec tgu (#995)
* tgu

* tgui

* Fixes compile errors & Updates Beefmen

* Smartfridges

* Coroner stuff

* fix helio fridges

* ci errors

* Update russian.dm

* Pubby Fix (#58)

among us

* helio fix and wounds fix

* re-adds features

* Adds a mentor log category

* Update exiled_king_basic.dm (#59)

---------

Co-authored-by: Ray <64306407+OneAsianTortoise@users.noreply.github.com>
Co-authored-by: SMOSMOSMOSMOSMO <95004236+SmoSmoSmoSmok@users.noreply.github.com>
2023-06-06 14:46:43 -04:00

49 lines
1.6 KiB
Plaintext

## MySQL Connection Configuration
## This is used for stats, feedback gathering,
## administration, and the in game library.
## Should SQL be enabled? Uncomment to enable
#SQL_ENABLED
## Server the MySQL database can be found at.
## Examples: localhost, 200.135.5.43, www.mysqldb.com, etc.
ADDRESS localhost
## MySQL server port (default is 3306).
PORT 3306
## Database for all SQL functions, not just feedback.
FEEDBACK_DATABASE feedback
## Prefix to be added to the name of every table, older databases will require this be set to erro_
## Note, this does not change the table names in the database, you will have to do that yourself.
##IE:
## FEEDBACK_TABLEPREFIX
## FEEDBACK_TABLEPREFIX SS13_
## Remove "SS13_" if you are using the standard schema file.
FEEDBACK_TABLEPREFIX SS13_
## Username/Login used to access the database.
FEEDBACK_LOGIN username
## Password used to access the database.
FEEDBACK_PASSWORD password
## Time in seconds for asynchronous queries to timeout
## Set to 0 for infinite
ASYNC_QUERY_TIMEOUT 10
## Time in seconds for blocking queries to execute before slow query timeout
## Set to 0 for infinite
## Must be less than or equal to ASYNC_QUERY_TIMEOUT
BLOCKING_QUERY_TIMEOUT 5
## The minimum number of sql connections to keep around in the pool. Setting this higher on servers geographically away from the database can improve performance.
POOLING_MIN_SQL_CONNECTIONS 1
## The maximum number of sql connections to the database.
POOLING_MAX_SQL_CONNECTIONS 25
## The maximum number of concurrent asynchronous queries that can be pending a result before we start queuing further database queries.
MAX_CONCURRENT_QUERIES 25