forked from Theresa/cups-webring
Initial commit
This commit is contained in:
commit
91ff76ac29
16 changed files with 913 additions and 0 deletions
14
lapis/config.lua
Normal file
14
lapis/config.lua
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
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"
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue