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