Add some things to node config block that will be useful to some
This commit is contained in:
parent
3549abd5ae
commit
b4bcc7247f
1 changed files with 6 additions and 0 deletions
|
@ -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') }}"
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue