admin.aprsto/config/backend.ini
Steve White ae9ece5266 *** Initial Commit of Files for APRS.TO Backend Administration Panel ***
This code is non-functional at this point.
2025-02-02 15:53:34 -05:00

27 lines
862 B
INI

[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"