changed example config to use snake_case
This commit is contained in:
parent
5719a8a434
commit
8599d383df
|
@ -66,6 +66,10 @@ function readConfigAndRun(args) {
|
|||
);
|
||||
}
|
||||
}
|
||||
|
||||
var recase = require('recase').create({});
|
||||
config = recase.camelCopy(config);
|
||||
|
||||
if (!config.dns) {
|
||||
config.dns = { proxy: { port: 3053 } };
|
||||
}
|
||||
|
|
|
@ -18,9 +18,9 @@ tls:
|
|||
address: '127.0.0.1:5443'
|
||||
|
||||
http:
|
||||
trustProxy: true
|
||||
allowInsecure: false
|
||||
primaryDomain: localhost.foo.daplie.me
|
||||
trust_proxy: true
|
||||
allow_insecure: false
|
||||
primary_domain: localhost.foo.daplie.me
|
||||
modules:
|
||||
- name: proxy
|
||||
domains:
|
||||
|
|
Loading…
Reference in New Issue