-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttpd.txt
127 lines (105 loc) · 4.38 KB
/
httpd.txt
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<Location "/gw/service/searchac/">
AddType text/cache-manifest .appcache
DirectoryIndex "login.html"
ProxyPass "http://localhost:8080/exist/restxq/gw/searchAC/json"
ProxyPassReverse "http://localhost:8080/exist/restxq/gw/searchAC/json"
ProxyPassReverseCookiePath /exist /
SetEnv force-proxy-request-1.0 1
SetEnv proxy-nokeepalive 1
</Location>
<Location "/gw/service/pdf/">
AddType text/cache-manifest .appcache
DirectoryIndex "login.html"
ProxyPass "http://localhost:8080/exist/restxq/gw/doc/pdf"
ProxyPassReverse "http://localhost:8080/exist/restxq/gw/doc/pdf"
ProxyPassReverseCookiePath /exist /
SetEnv force-proxy-request-1.0 1
SetEnv proxy-nokeepalive 1
</Location>
<Location "/gw/service/themes/expressions/summary/">
AddType text/cache-manifest .appcache
ProxyPass "http://localhost:8080/exist/restxq/gw/themes/expressions/summary/json"
ProxyPassReverse "http://localhost:8080/exist/restxq/gw/themes/expressions/summary/json"
ProxyPassReverseCookiePath /exist /
SetEnv force-proxy-request-1.0 1
SetEnv proxy-nokeepalive 1
</Location>
<Location "/gw/service/recent/expressions/summary/">
AddType text/cache-manifest .appcache
ProxyPass "http://localhost:8080/exist/restxq/gw/recent/expressions/summary/json"
ProxyPassReverse "http://localhost:8080/exist/restxq/gw/recent/expressions/summary/json"
ProxyPassReverseCookiePath /exist /
SetEnv force-proxy-request-1.0 1
SetEnv proxy-nokeepalive 1
</Location>
<Location "/gw/service/doc/">
AddType text/cache-manifest .appcache
ProxyPass "http://localhost:8080/exist/restxq/gw/doc/json"
ProxyPassReverse "http://localhost:8080/exist/restxq/gw/doc/json"
ProxyPassReverseCookiePath /exist /
SetEnv force-proxy-request-1.0 1
SetEnv proxy-nokeepalive 1
</Location>
<Location "/gw/portal/xml/">
AddType text/cache-manifest .appcache
ProxyPass "http://localhost:8080/exist/restxq/gw/doc"
ProxyPassReverse "http://localhost:8080/exist/restxq/gw/doc"
ProxyPassReverseCookiePath /exist /
SetEnv force-proxy-request-1.0 1
SetEnv proxy-nokeepalive 1
</Location>
<Location "/gw/service/search/year/">
AddType text/cache-manifest .appcache
ProxyPass "http://localhost:8080/exist/restxq/gw/search/years/summary/json"
ProxyPassReverse "http://localhost:8080/exist/restxq/gw/search/years/summary/json"
ProxyPassReverseCookiePath /exist /
SetEnv force-proxy-request-1.0 1
SetEnv proxy-nokeepalive 1
</Location>
<Location "/gw/service/search/language/">
AddType text/cache-manifest .appcache
ProxyPass "http://localhost:8080/exist/restxq/gw/search/languages/summary/json"
ProxyPassReverse "http://localhost:8080/exist/restxq/gw/search/languages/summary/json"
ProxyPassReverseCookiePath /exist /
SetEnv force-proxy-request-1.0 1
SetEnv proxy-nokeepalive 1
</Location>
<Location "/gw/service/search/keyword/">
AddType text/cache-manifest .appcache
ProxyPass "http://localhost:8080/exist/restxq/gw/search/keywords/summary/json"
ProxyPassReverse "http://localhost:8080/exist/restxq/gw/search/keywords/summary/json"
ProxyPassReverseCookiePath /exist /
SetEnv force-proxy-request-1.0 1
SetEnv proxy-nokeepalive 1
</Location>
<Location "/gw/service/search/country/">
AddType text/cache-manifest .appcache
ProxyPass "http://localhost:8080/exist/restxq/gw/search/countries/summary/json"
ProxyPassReverse "http://localhost:8080/exist/restxq/gw/search/countries/summary/json"
ProxyPassReverseCookiePath /exist /
SetEnv force-proxy-request-1.0 1
SetEnv proxy-nokeepalive 1
</Location>
<Location "/gw/service/short-filter-cache/">
AddType text/cache-manifest .appcache
ProxyPass "http://localhost:9001/gwp/short-filter-cache"
ProxyPassReverse "http://localhost:9001/gwp/short-filter-cache"
ProxyPassReverseCookiePath /exist /
SetEnv force-proxy-request-1.0 1
SetEnv proxy-nokeepalive 1
</Location>
<Location "/gw/service/search/filter/">
AddType text/cache-manifest .appcache
ProxyPass "http://localhost:8080/exist/restxq/gw/search/filter/json"
ProxyPassReverse "http://localhost:8080/exist/restxq/gw/search/filter/json"
ProxyPassReverseCookiePath /exist /
SetEnv force-proxy-request-1.0 1
SetEnv proxy-nokeepalive 1
</Location>
<Location "/gw/service/keyword/">
AddType text/cache-manifest .appcache
ProxyPass "http://localhost:9001/gwp/keyword"
ProxyPassReverse "http://localhost:9001/gwp/keyword"
SetEnv force-proxy-request-1.0 1
SetEnv proxy-nokeepalive 1
</Location>