-
Notifications
You must be signed in to change notification settings - Fork 37
/
index.html
41 lines (32 loc) · 1.41 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>cors-container proxy</title>
<meta name="description" content="cors-container proxies HTTP(S) requests and adds CORS permissive headers to the response."/>
</head>
<body>
<head>
<h1>cors-container</h1>
</head>
<main>
<p>
cors-container proxies HTTP(S) requests and adds CORS permissive headers to the response.
</p>
<h2>Usage:</h2>
<pre>
Format:
<i><u>protocol://</u>cors-container/</i><strong>url-to-proxy</strong>
Examples:
Insecure: <i><u>http://</u>cors-container/</i><strong>http://some-insecure-endpoint.com</strong>
Secure (TLS): <i><u>https://</u>cors-container/</i><strong>https://some-secure-endpoint.com</strong>
Optional headers:
rewrite-urls: true (rewrites all relative URLs in the response to match the absolute cors-container URL)
</pre>
</main>
<footer>
<p>cors-container source code is avaiable on <a href="http://github.com/imjacobclark/cors-container">GitHub</a>.</p>
<p>Made with love by the community <a href="https://github.com/imjacobclark/cors-container/graphs/contributors">see all contributors on GitHub</a>.</p>
</footer>
</body>
</html>