From 13647d55bd8085a2b3a686b8aad3b28b0faf693a Mon Sep 17 00:00:00 2001 From: winter Date: Sat, 7 Dec 2024 23:34:59 +0000 Subject: use a config.ini file for basic configuration --- config.ini | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 config.ini (limited to 'config.ini') diff --git a/config.ini b/config.ini new file mode 100644 index 0000000..a09203f --- /dev/null +++ b/config.ini @@ -0,0 +1,20 @@ +[instance] +; hostname (required) and port (optional) should be the values seen from the +; outside world. this is important if you're using a reverse proxy +hostname = example.com +;port = 443 +; whether clients will use https to connect - again, important for reverse +; proxies that terminate tls (optional, default = true) +;https = false + +[database] +host = localhost +port = 5432 +username = wpftest +password = wpftest +database = wpftest + +[debug] +; whether to send full tracebacks on internal server errors (optional, +; default = false) +;send_tracebacks = true \ No newline at end of file -- cgit v1.3