[bootstrap] ;; Basic database settings for the site back-end functions ;; This includes user account management, preferences, site configurations, etc. ;; This must be a separate server from the normal Postgresql used for packet ;; storage as that database is optimized to tolerate some data loss. ;; Mysql Hostname or IP host="192.168.8.254" ;; Database Name database="aprs_tracker_backend" ;; Database credentials ;; If using docker, activate username and set to "root" username="tracker_backend" password="DxwU3Lnakdi3" ;; Database port (3306 for mysql) port="3306" ;; For busy sites and sites running the database on a separate server enabling ;; persistent connections can improve responsiveness and reduce server load by ;; eliminating the need to re-establish a connection to the database on every ;; page request. use_persistent_db_connections="1"