File tree 3 files changed +7
-7
lines changed
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " bugover/laravel-websocket" ,
3
3
"description" : " An easy to use WebSocket server" ,
4
- "version" : " 1.16.8 " ,
4
+ "version" : " 1.16.9 " ,
5
5
"keywords" : [
6
6
" bugover" ,
7
7
" laravel-websocket"
Original file line number Diff line number Diff line change 116
116
* certificate chain of issuers. The private key also may be contained
117
117
* in a separate file specified by local_pk.
118
118
*/
119
- 'local_cert ' => env ('LARAVEL_WEBSOCKETS_SSL_LOCAL_CERT ' , null ),
119
+ 'local_cert ' => env ('SSL_LOCAL_CERT ' , null ),
120
120
121
121
/*
122
122
* Path to local private key file on filesystem in case of separate files for
123
123
* certificate (local_cert) and private key.
124
124
*/
125
- 'local_pk ' => env ('LARAVEL_WEBSOCKETS_SSL_LOCAL_PK ' , null ),
125
+ 'local_pk ' => env ('SSL_LOCAL_PK ' , null ),
126
126
127
127
/*
128
128
* Passphrase for your local_cert file.
129
129
*/
130
- 'passphrase ' => env ('LARAVEL_WEBSOCKETS_SSL_PASSPHRASE ' , null ),
130
+ 'passphrase ' => env ('SSL_PASSPHRASE ' , null ),
131
131
],
132
132
133
133
/*
Original file line number Diff line number Diff line change @@ -148,18 +148,18 @@ return [
148
148
* certificate chain of issuers. The private key also may be contained
149
149
* in a separate file specified by local_pk.
150
150
*/
151
- 'local_cert' => env('LARAVEL_WEBSOCKETS_SSL_LOCAL_CERT ', null),
151
+ 'local_cert' => env('SSL_LOCAL_CERT ', null),
152
152
153
153
/*
154
154
* Path to local private key file on filesystem in case of separate files for
155
155
* certificate (local_cert) and private key.
156
156
*/
157
- 'local_pk' => env('LARAVEL_WEBSOCKETS_SSL_LOCAL_PK ', null),
157
+ 'local_pk' => env('SSL_LOCAL_PK ', null),
158
158
159
159
/*
160
160
* Passphrase for your local_cert file.
161
161
*/
162
- 'passphrase' => env('LARAVEL_WEBSOCKETS_SSL_PASSPHRASE ', null),
162
+ 'passphrase' => env('SSL_PASSPHRASE ', null),
163
163
],
164
164
165
165
/*
You can’t perform that action at this time.
0 commit comments