mirror of
https://github.com/moparisthebest/mail
synced 2024-11-26 19:02:20 -05:00
487bb31d45
* Relax CSP to allow iframe assets to load * Integrate socket.io proxy * go to /# when controllers not initiated * Add offline caching using AppCache manifest
12 lines
274 B
JavaScript
12 lines
274 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
server: {
|
|
port: process.env.PORT || 8889,
|
|
host: "0.0.0.0"
|
|
},
|
|
log: {
|
|
level: "silly",
|
|
http: ':remote-addr [:date] ":method :url HTTP/:http-version" :status :res[content-length] ":referrer"'
|
|
}
|
|
}; |