回答編集履歴
2
追記
answer
CHANGED
@@ -8,4 +8,23 @@
|
|
8
8
|
---
|
9
9
|
|
10
10
|
ちなみに `apache` のスペル間違ってますよ。
|
11
|
-
`apatch` -> `apache`
|
11
|
+
`apatch` -> `apache`
|
12
|
+
|
13
|
+
---
|
14
|
+
```bash
|
15
|
+
# Change this to Listen on specific IP addresses as shown below to
|
16
|
+
# prevent Apache from glomming onto all bound IP addresses.
|
17
|
+
#
|
18
|
+
#Listen 12.34.56.78:80
|
19
|
+
8090 ←ここが60行目です
|
20
|
+
```
|
21
|
+
|
22
|
+
↓
|
23
|
+
|
24
|
+
```bash
|
25
|
+
# Change this to Listen on specific IP addresses as shown below to
|
26
|
+
# prevent Apache from glomming onto all bound IP addresses.
|
27
|
+
#
|
28
|
+
#Listen 12.34.56.78:80
|
29
|
+
Listen 8090
|
30
|
+
```
|
1
修正
answer
CHANGED
@@ -3,4 +3,9 @@
|
|
3
3
|
```
|
4
4
|
|
5
5
|
C:/Apache24/conf/httpd.conf の60行目にエラーがあるという意味なのですから、
|
6
|
-
全角の空白が混ざっていたり、すくなくとも文法的なエラーがあると指摘されています。
|
6
|
+
全角の空白が混ざっていたり、すくなくとも文法的なエラーがあると指摘されています。
|
7
|
+
|
8
|
+
---
|
9
|
+
|
10
|
+
ちなみに `apache` のスペル間違ってますよ。
|
11
|
+
`apatch` -> `apache`
|