webmcp

view demo-app/config/demo.lua @ 567:5e3ebe9fd0ce

Added tag v2.2.1 for changeset 3b71fdb3a00d
author jbe
date Wed Apr 28 13:07:52 2021 +0200 (2021-04-28)
parents 8579adac1cc6
children
line source
2 -- open and set default database handle
3 config.db = {
4 engine='postgresql',
5 dbname='webmcp_demo'
6 }
8 listen{
9 { proto = "tcp", host = "::1", port = 8080 },
10 { proto = "tcp", host = "127.0.0.1", port = 8080 },
11 { proto = "interval", delay = 60, handler = function() io.stderr:write("Background job executed here\n") end }
12 }
14 -- 'request.get_relative_baseurl()' should be replaced by the absolute
15 -- base URL of the application, as otherwise HTTP redirects will not be
16 -- standard compliant
17 --request.set_absolute_baseurl(request.get_relative_baseurl())
19 -- uncomment the following lines, if you want to use a database driven
20 -- tempstore instead of a file-based tempstore (for flash messages):
21 --
22 -- function tempstore.save(blob)
23 -- return Tempstore:create(blob)
24 -- end
25 -- function tempstore.pop(key)
26 -- return Tempstore:data_by_key(key)
27 -- end

Impressum / About Us