webmcp

view demo-app/config/demo.lua @ 512:8579adac1cc6

Fixed demo-app configuration to match newer listen{...} parameterization
author jbe
date Mon Aug 21 05:40:09 2017 +0200 (2017-08-21)
parents f5d2d0ccb94a
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