You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: configuration.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,8 +15,8 @@ Here are the available configuration options and their default values:
15
15
| `unix_socket` | | Path to a UNIX socket to listen on instead of the TCP port. If specified, SQLPage will accept HTTP connections only on this socket and not on any TCP port. This option is mutually exclusive with `listen_on` and `port`.
16
16
|`host`|| The web address where your application is accessible (e.g., "myapp.example.com"). Used for login redirects with OIDC. |
17
17
|`max_database_pool_connections`| PostgreSQL: 50<BR> MySql: 75<BR> SQLite: 16<BR> MSSQL: 100 | How many simultaneous database connections to open at most |
18
-
|`database_connection_idle_timeout_seconds`| SQLite: None<BR> All other: 30 minutes | Automatically close database connections after this period of inactivity |
19
-
|`database_connection_max_lifetime_seconds`| SQLite: None<BR> All other: 60 minutes | Always close database connections after this amount of time|
18
+
|`database_connection_idle_timeout_seconds`| SQLite: None<BR> All other: 30 minutes | Automatically close database connections after this period of inactivity. Set to 0 to disable. |
19
+
|`database_connection_max_lifetime_seconds`| SQLite: None<BR> All other: 60 minutes | Always close database connections after this amount of time. Set to 0 to disable.|
20
20
|`database_connection_retries`| 6 | Database connection attempts before giving up. Retries will happen every 5 seconds. |
21
21
|`database_connection_acquire_timeout_seconds`| 10 | How long to wait when acquiring a database connection from the pool before giving up and returning an error. |
22
22
|`sqlite_extensions`|| An array of SQLite extensions to load, such as `mod_spatialite`|
0 commit comments