質問編集履歴

1

質問内容の修正

2020/07/16 01:59

投稿

1079
1079

スコア14

test CHANGED
@@ -1 +1 @@
1
- Apache2+CGIでPOST受信した
1
+ RaspberryPiにて Apache2をHTTPSに設定した際のエラー
test CHANGED
@@ -1,21 +1,35 @@
1
- RaspberryPiApache2をインストールしWEBサーバとしています。
1
+ 下記のサイトを参考にRaspberryPiApache2をHTTPSに設定を行っています。
2
+
3
+ https://qiita.com/utti0307/items/3fc7418a8832c3e99ae4
2
4
 
3
5
 
4
6
 
5
- CGIでpythonを動せるように設定済みでPCから192.168.x.xxx/cgi-bin/test.pyにGETリトしHello World表示できるでを確認済みです。
7
+ 設定完了後、chromeからhttps://192.168.1.xxでアすると「この接続ではプライバシーが保護されせん」とエラーが表示されてしいます。
6
8
 
7
9
 
8
10
 
9
- PCから192.168.x.xxx/cgi-bin/test.pyにPOSTを送信してからのpythonでの処理が分かりません。Apache2のaccess.logにはPOSTでのログが残っております。
11
+ /var/log/apache2/error.logには以下のログが残ってます。
10
12
 
11
- サイト等で調べていると入力フォームからのばかりでいまいち理解できません。
13
+ [Thu Jul 16 02:47:02.699416 2020] [mpm_event:notice] [pid 1167:tid 1996157456] AH00491: caught SIGTERM, shutting down
12
14
 
13
15
 
14
16
 
15
- 段階的な目標ではありますが、ラズパイはPOST受信専用のWEBサーバーとして稼働しPOST受信すると受信したデータをそのまま返答できればと考えています。
17
+ [Thu Jul 16 02:47:02.865590 2020] [ssl:warn] [pid 1259:tid 1996087824] AH01909: 127.0.0.1:443:0 server certificate does NOT include an ID which matches the server name
16
18
 
17
19
 
18
20
 
19
- Linuxについて勉強中で知識不足で説明が足りないかと思いますが、
21
+ [Thu Jul 16 02:47:02.890300 2020] [ssl:warn] [pid 1260:tid 1996087824] AH01909: 127.0.0.1:443:0 server certificate does NOT include an ID which matches the server name
20
22
 
23
+
24
+
25
+ [Thu Jul 16 02:47:02.894617 2020] [mpm_event:notice] [pid 1260:tid 1996087824] AH00489: Apache/2.4.38 (Raspbian) OpenSSL/1.1.1d configured -- resuming normal operations
26
+
27
+
28
+
29
+ [Thu Jul 16 02:47:02.894758 2020] [core:notice] [pid 1260:tid 1996087824] AH00094: Command line: '/usr/sbin/apache2'
30
+
31
+
32
+
33
+ 設定が参考サイト通りになっていないのかと思い何度も設定を見直しましたが間違えは見当たりませんでした。
34
+
21
- pythonで処理法やCGI必要なのかにつてもご教授頂ければ幸す。
35
+ エラーログ対策など分かる方がいればご教授をお願致します。