Skip to content
This repository was archived by the owner on Dec 15, 2025. It is now read-only.

Commit 73b5b21

Browse files
committed
edit readme.md
1 parent 91c0646 commit 73b5b21

File tree

1 file changed

+14
-9
lines changed

1 file changed

+14
-9
lines changed

README.md

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@ This application serves as a proxy for HLS streams, Images and enabling secure a
77
- Enter valid Cloudflare API key and Account ID.
88
- Enable github workflows
99
- Run **`deploy`** workflow in your forked repo actions `https://github.com/[User-Name]/[Repo-Name]/actions/workflows/deploy.yml` .
10-
10+
1111
[![Deploy to Cloudflare Workers](https://deploy.workers.cloudflare.com/button)](https://deploy.workers.cloudflare.com/?url=https://github.com/Toasty360/Roxy)
12-
>[!TIP]
12+
13+
> [!TIP]
1314
> Dont' forget to run the workflow
1415
1516
### Deploy Manually
@@ -44,19 +45,23 @@ Use the following format to access the proxy:
4445
#### Encode M3U8 URL:
4546

4647
```javascript
47-
btoa('http://example.com/stream.m3u8');
48+
btoa('https://example.com/stream.m3u8');
4849
```
4950

50-
#### Encode Headers (if needed):
51+
or you can do this.
5152

5253
```javascript
53-
btoa(JSON.stringify({ Referrer: 'https://anitaku.bz' }));
54+
encodeURIComponent('https://example.com/stream.m3u8');
5455
```
5556

56-
---
57-
58-
### Example Request
57+
#### Encode Headers (if needed):
5958

59+
```javascript
60+
btoa(JSON.stringify({ Referer: 'https://kiwik.si' }));
6061
```
61-
/proxy?url=aHR0cDovL2V4YW1wbGUuY29tL3N0cmVhbS5tM3U4&headers=eyJBdXRob3JpemF0aW9uIjoiQmVhcmVyIHRva2VuIn0=
62+
63+
or you can do this.
64+
65+
```javascript
66+
encodeURIComponent(JSON.stringify({ Referer: 'https://kiwik.si' }));
6267
```

0 commit comments

Comments
 (0)