mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-24 22:11:01 -06:00
#3857 pusher error
This commit is contained in:
parent
654b277823
commit
f4064fa221
@ -1,4 +1,4 @@
|
|||||||
$('.categories-list .show-all').on('click', function () {
|
$('.categories-list .show-all').on('click', function () {
|
||||||
$(this).siblings('.hidden-category').toggleClass('hidden')
|
$(this).siblings('.hidden-category').toggleClass('hidden');
|
||||||
$(this).find('a span').toggleClass('hidden')
|
$(this).find('a span').toggleClass('hidden');
|
||||||
})
|
});
|
||||||
|
|||||||
@ -37,10 +37,14 @@ return [
|
|||||||
'app_id' => env('PUSHER_APP_ID'),
|
'app_id' => env('PUSHER_APP_ID'),
|
||||||
'options' => [
|
'options' => [
|
||||||
'cluster' => env('PUSHER_APP_CLUSTER'),
|
'cluster' => env('PUSHER_APP_CLUSTER'),
|
||||||
'encrypted' => false,
|
'encrypted' => true,
|
||||||
'host' => '127.0.0.1',
|
'host' => '127.0.0.1',
|
||||||
'port' => 6001,
|
'port' => 6001,
|
||||||
'scheme' => 'http'
|
'scheme' => 'https',
|
||||||
|
'curl_options' => [
|
||||||
|
CURLOPT_SSL_VERIFYHOST => 0,
|
||||||
|
CURLOPT_SSL_VERIFYPEER => 0,
|
||||||
|
]
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user