Skip to content

Commit 024343d

Browse files
committed
change ssl config key
1 parent 1da6ea9 commit 024343d

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "bugover/laravel-websocket",
33
"description": "An easy to use WebSocket server",
4-
"version": "1.16.8",
4+
"version": "1.16.9",
55
"keywords": [
66
"bugover",
77
"laravel-websocket"

config/websockets.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -116,18 +116,18 @@
116116
* certificate chain of issuers. The private key also may be contained
117117
* in a separate file specified by local_pk.
118118
*/
119-
'local_cert' => env('LARAVEL_WEBSOCKETS_SSL_LOCAL_CERT', null),
119+
'local_cert' => env('SSL_LOCAL_CERT', null),
120120

121121
/*
122122
* Path to local private key file on filesystem in case of separate files for
123123
* certificate (local_cert) and private key.
124124
*/
125-
'local_pk' => env('LARAVEL_WEBSOCKETS_SSL_LOCAL_PK', null),
125+
'local_pk' => env('SSL_LOCAL_PK', null),
126126

127127
/*
128128
* Passphrase for your local_cert file.
129129
*/
130-
'passphrase' => env('LARAVEL_WEBSOCKETS_SSL_PASSPHRASE', null),
130+
'passphrase' => env('SSL_PASSPHRASE', null),
131131
],
132132

133133
/*

docs/getting-started/installation.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -148,18 +148,18 @@ return [
148148
* certificate chain of issuers. The private key also may be contained
149149
* in a separate file specified by local_pk.
150150
*/
151-
'local_cert' => env('LARAVEL_WEBSOCKETS_SSL_LOCAL_CERT', null),
151+
'local_cert' => env('SSL_LOCAL_CERT', null),
152152

153153
/*
154154
* Path to local private key file on filesystem in case of separate files for
155155
* certificate (local_cert) and private key.
156156
*/
157-
'local_pk' => env('LARAVEL_WEBSOCKETS_SSL_LOCAL_PK', null),
157+
'local_pk' => env('SSL_LOCAL_PK', null),
158158

159159
/*
160160
* Passphrase for your local_cert file.
161161
*/
162-
'passphrase' => env('LARAVEL_WEBSOCKETS_SSL_PASSPHRASE', null),
162+
'passphrase' => env('SSL_PASSPHRASE', null),
163163
],
164164

165165
/*

0 commit comments

Comments
 (0)