-
Notifications
You must be signed in to change notification settings - Fork 1
/
proxy.html
51 lines (46 loc) · 2.1 KB
/
proxy.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
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=0, minimal-ui">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<!-- For iPad with high-resolution Retina display running iOS ≥ 7: -->
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="assets/icons/apple-touch-icon-152x152-precomposed.png">
<!-- For iPhone with high-resolution Retina display running iOS ≥ 7: -->
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="assets/icons/apple-touch-icon-120x120-precomposed.png">
<!-- For the iPad mini and the first- and second-generation iPad on iOS ≥ 7: -->
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="assets/icons/apple-touch-icon-76x76-precomposed.png">
<!-- For non-Retina iPhone, iPod Touch, and Android 2.1+ devices: -->
<link rel="apple-touch-icon-precomposed" href="assets/icons/apple-touch-icon-precomposed.png">
<!-- For Android 3.x+ devices: -->
<link rel="icon" sizes="196x196" href="assets/icons/apple-touch-icon.png">
<title>Twitter Montage Demo</title>
<script src="https://origin-server.example.com:8080/node_modules/http2-cache/index.js"></script>
<script type="text/javascript">
XMLHttpRequest.proxy([{
"push": "https://rest-accelerator.example.com:8081/event-stream",
"transport": "wss://rest-accelerator.example.com:8081/",
//"clientLogLevel": "debug",
"proxy": [
// Add demos service endpoint here
"https://origin-server.example.com:8085/api/",
// Un-comment to load all resources via accelerator
//"https://origin-server.example.com:8085/"
]
}]);
</script>
<link rel="stylesheet" href="assets/style/style.css" />
<script src="node_modules/montage/montage.js" async></script>
<script type="text/montage-serialization">
{
"owner": {
"prototype": "montage/ui/loader.reel"
}
}
</script>
</head>
<body>
<span class="loading"></span>
</body>
</html>