Add some things to node config block that will be useful to some

This commit is contained in:
Dane Everitt 2016-11-28 13:55:02 -05:00
parent 3549abd5ae
commit b4bcc7247f
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53

View file

@ -276,6 +276,7 @@
<div class="col-md-12"> <div class="col-md-12">
<pre><code>{ <pre><code>{
"web": { "web": {
"host": "0.0.0.0",
"listen": {{ $node->daemonListen }}, "listen": {{ $node->daemonListen }},
"ssl": { "ssl": {
"enabled": {{ $node->scheme === 'https' ? 'true' : 'false' }}, "enabled": {{ $node->scheme === 'https' ? 'true' : 'false' }},
@ -292,6 +293,10 @@
"port": {{ $node->daemonSFTP }}, "port": {{ $node->daemonSFTP }},
"container": "ptdl-sftp" "container": "ptdl-sftp"
}, },
"query": {
"kill_on_fail": false,
"fail_limit": 5
},
"logger": { "logger": {
"path": "logs/", "path": "logs/",
"src": false, "src": false,
@ -300,6 +305,7 @@
"count": 3 "count": 3
}, },
"remote": { "remote": {
"base": "{{ config('app.url') }}",
"download": "{{ route('remote.download') }}", "download": "{{ route('remote.download') }}",
"installed": "{{ route('remote.install') }}" "installed": "{{ route('remote.install') }}"
}, },