;; APRS.TO Configuration Example ;; This is an example bootstrap configuration file, you need to modify it for your use. [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="aprsto" ;; Database credentials ;; If using docker, activate username and set to "root" ;username="user" ;password="pass" ;; 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"