回答編集履歴

2

修正

2018/11/27 05:07

投稿

CHERRY
CHERRY

スコア25171

test CHANGED
@@ -12,4 +12,28 @@
12
12
 
13
13
 
14
14
 
15
- たとえば、` grep -E 'Basic|Digest' /etc/httpd/conf/httpd.conf /etc/httpd/conf.d/*.conf ` を実行して ` AuthType Basic ` や ` AuthType Digest ` が、表示されたら、 ` /etc/httpd/conf/httpd.conf ` か ` /etc/httpd/conf.d/*.conf ` の中のどこかで設定されています。
15
+ たとえば、
16
+
17
+ ```
18
+
19
+ grep -E 'Basic|Digest' /etc/httpd/conf/httpd.conf /etc/httpd/conf.d/*.conf
20
+
21
+ ```
22
+
23
+ を実行して ` AuthType Basic ` や ` AuthType Digest ` が、表示されたら、 ` /etc/httpd/conf/httpd.conf ` か ` /etc/httpd/conf.d/*.conf ` の中のどれかのファイルで設定されています。
24
+
25
+
26
+
27
+ 実行例:
28
+
29
+ ```
30
+
31
+ $ grep -E 'Basic|Digest' /etc/httpd/conf/httpd.conf /etc/httpd/conf.d/*.conf
32
+
33
+
34
+
35
+ /etc/httpd/conf.d/example.com.conf: AuthType Basic
36
+
37
+ /etc/httpd/conf.d/example.jp.conf: AuthType Basic
38
+
39
+ ```

1

修正

2018/11/27 05:07

投稿

CHERRY
CHERRY

スコア25171

test CHANGED
@@ -12,4 +12,4 @@
12
12
 
13
13
 
14
14
 
15
- たとえば、` httpd -t -D DUMP_CONFIG | grep -E 'Basic|Digest' ` を実行して ` AuthType Basic ` や ` AuthType Digest ` が、表示されたら、 ` /etc/httpd/conf/httpd.conf ` か ` /etc/httpd/conf.d/*.conf ` の中のどこかで設定されています。
15
+ たとえば、` grep -E 'Basic|Digest' /etc/httpd/conf/httpd.conf /etc/httpd/conf.d/*.conf ` を実行して ` AuthType Basic ` や ` AuthType Digest ` が、表示されたら、 ` /etc/httpd/conf/httpd.conf ` か ` /etc/httpd/conf.d/*.conf ` の中のどこかで設定されています。