Lua 5.4, Luarocks 3.12.2 and Prosody 0.12.5

This commit is contained in:
2026-01-02 16:51:53 +01:00
parent bce1639d25
commit c859ea8aeb
6 changed files with 71 additions and 35 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
default_storage = "sql"
sql = {
driver = os.getenv("DB_DRIVER");
database = os.getenv("DB_DATABASE");
driver = os.getenv("DB_DRIVER") or "SQLite3";
database = os.getenv("DB_DATABASE") or "prosody.sqlite";
host = os.getenv("DB_HOST");
port = os.getenv("DB_PORT");
username = os.getenv("DB_USERNAME");