Skip to content

Commit 9b22d28

Browse files
Update README.md
1 parent c787372 commit 9b22d28

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -236,11 +236,15 @@ Because Secured Signal API is just a Proxy you can use all of the [Signal REST A
236236
| **/v1/accounts** |
237237
| **/v1/contacts** |
238238

239-
These Endpoints are blocked by default due to Security Risks, but can be modified by setting `BLOCKED_ENDPOINTS` to a valid json array string
239+
These Endpoints are blocked by default due to Security Risks, but can be modified by setting `BLOCKED_ENDPOINTS` to a Comma seperated List:
240240

241241
```yaml
242242
environment:
243-
BLOCKED_ENDPOINTS: '[ "/v1/register","/v1/unregister","/v1/qrcodelink","/v1/contacts" ]'
243+
BLOCKED_ENDPOINTS: |
244+
/v1/register,
245+
/v1/unregister,
246+
/v1/qrcodelink,
247+
/v1/contacts,
244248
```
245249
246250
#### Variables
@@ -265,7 +269,8 @@ Set this Environment Variable to automatically provide default Recipients:
265269

266270
```yaml
267271
environment:
268-
RECIPIENTS: ' [ "user.id", "000", "001", "group.id" ] '
272+
RECIPIENTS: |
273+
user.id, 000, 001, group.id,
269274
```
270275

271276
example:

0 commit comments

Comments
 (0)