質問編集履歴
5
test
CHANGED
File without changes
|
test
CHANGED
@@ -28,4 +28,6 @@
|
|
28
28
|
|
29
29
|
例えば、src="/images/sample.jpg"とルート指定している場合、きちんとhttp://proxy.test.com/images/sample.jpgを読みに行ってくれるのでしょうか?
|
30
30
|
|
31
|
+
また、
|
32
|
+
|
31
|
-
|
33
|
+
src="http://test.com/proxy/images/sample.jpg"という記述した場合、http://proxy.test.com/images/sample.jpgを見に行ってくれるのでしょうか?
|
4
test
CHANGED
File without changes
|
test
CHANGED
@@ -28,4 +28,4 @@
|
|
28
28
|
|
29
29
|
例えば、src="/images/sample.jpg"とルート指定している場合、きちんとhttp://proxy.test.com/images/sample.jpgを読みに行ってくれるのでしょうか?
|
30
30
|
|
31
|
-
また、http://test.com/proxy/images/という記述した場合、
|
31
|
+
また、http://test.com/proxy/images/という記述した場合、http://proxy.test.com/images/を見に行ってくれるのでしょうか?
|
3
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
Apacheにて下記のようなリバースプロキシを設定したいと考えています。
|
2
2
|
|
3
|
+
```
|
3
4
|
|
4
|
-
|
5
|
-
|
5
|
+
DocumentRoot /var/www/html/test
|
6
6
|
|
7
7
|
ServerName test.com
|
8
8
|
|
@@ -14,7 +14,9 @@
|
|
14
14
|
|
15
15
|
ProxyPass /proxy http://proxy.test.com
|
16
16
|
|
17
|
-
ProxyPassReverse /proxy http://proxy.test.com
|
17
|
+
ProxyPassReverse /proxy http://proxy.test.com
|
18
|
+
|
19
|
+
```
|
18
20
|
|
19
21
|
|
20
22
|
|
2
test
CHANGED
File without changes
|
test
CHANGED
File without changes
|
1
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
-
|
5
|
+
'''DocumentRoot /var/www/html/test
|
6
6
|
|
7
7
|
ServerName test.com
|
8
8
|
|
@@ -14,7 +14,7 @@
|
|
14
14
|
|
15
15
|
ProxyPass /proxy http://proxy.test.com
|
16
16
|
|
17
|
-
ProxyPassReverse /proxy http://proxy.test.com
|
17
|
+
ProxyPassReverse /proxy http://proxy.test.com'''
|
18
18
|
|
19
19
|
|
20
20
|
|