webmcp

changeset 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 bb1f3e7c65d1
children 74463f7af123
files demo-app/config/demo.lua
line diff
     1.1 --- a/demo-app/config/demo.lua	Mon Aug 21 04:28:17 2017 +0200
     1.2 +++ b/demo-app/config/demo.lua	Mon Aug 21 05:40:09 2017 +0200
     1.3 @@ -6,8 +6,8 @@
     1.4  }
     1.5  
     1.6  listen{
     1.7 -  { proto = "tcp4", port = 8080 },
     1.8 -  { proto = "tcp6", port = 8080 },
     1.9 +  { proto = "tcp", host = "::1", port = 8080 },
    1.10 +  { proto = "tcp", host = "127.0.0.1", port = 8080 },
    1.11    { proto = "interval", delay = 60, handler = function() io.stderr:write("Background job executed here\n") end }
    1.12  }
    1.13  

Impressum / About Us