cups-webring/lapis/config.lua
2025-07-10 20:18:49 +02:00

14 lines
263 B
Lua

local config = require("lapis.config")
config("development", {
server = "nginx",
code_cache = "off",
num_workers = "1",
host = "http://localhost:8080"
})
config("production", {
server = "nginx",
num_workers= "1",
host = "https://cups.teabucket.eu"
})