{
    "port":3000,
    "mongoose":{
        "uri": "mongodb://localhost/{{dbname}}",
        "options":{
            "server":{
                "socketOptions":{
                    "keepAlive":1,
                    "connectTimeoutMS": 30000
                }
            }
        },
        "db": {
            "server":"localhost",
            "name":"{{dbname}}",
            "port": 27017
        }
    },
    "session":{
        "secret": "plexSecret",
        "key": "sid",
        "cookie":{
            "path":"/",
            "httpOnly":true,
            "maxAge":null
        }
    }
}