forked from Theresa/cups-webring
14 lines
263 B
Lua
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"
|
|
})
|