デミオ、7年目の車検
今回はカーコン倶楽部カーバックス店で。通常の点検整備に加えてブレーキフルード交換3,970円を依頼。諸費用込みの総額は81,304円也。ディーラーに出すより3万ほど安上がりで終わった。
最近TVCMでもガンガン流れている自動車リサイクル。公式アナウンスでは今月から費用徴収となっているのだが、業者側の準備が間に合わず継続車検では2月分からになっているらしい。今回は払わなくて済んだ、とはいえ次回の車検か廃車時には払わなくてはならないのだが…
今回はカーコン倶楽部カーバックス店で。通常の点検整備に加えてブレーキフルード交換3,970円を依頼。諸費用込みの総額は81,304円也。ディーラーに出すより3万ほど安上がりで終わった。
最近TVCMでもガンガン流れている自動車リサイクル。公式アナウンスでは今月から費用徴収となっているのだが、業者側の準備が間に合わず継続車検では2月分からになっているらしい。今回は払わなくて済んだ、とはいえ次回の車検か廃車時には払わなくてはならないのだが…
そういえば /etc/httpd/conf/httpd.conf にSSLのセクションが無い…と途方に暮れていたところ、/etc/httpd/conf.d/に ssl.conf を発見。DocumentRootとServerNameを書換えてrestart。アクセスしてみると「"localhost.localdomain"の証明書は信頼できない」と怒られた....
確かにおっしゃるとおりなので、オリジナルのサーバー証明書を作成。
[root@nx9030 root]# cd /etc/httpd/conf/
[root@nx9030 conf]# ### 1. サーバー秘密鍵 server.keyの生成 ###
[root@nx9030 conf]# make genkey
umask 77 ; \
/usr/bin/openssl genrsa -des3 1024 > /etc/httpd/conf/ssl.key/server.key
Generating RSA private key, 1024 bit long modulus
.....++++++
...........++++++
e is 65537 (0x10001)
Enter pass phrase:************(パスフレーズ)
Verifying - Enter pass phrase:************(パスフレーズ)
[root@nx9030 conf]# ### 2. サーバー証明書 server.crtの生成 ###
[root@nx9030 conf]# make testcert
umask 77 ; \
/usr/bin/openssl req -new -key /etc/httpd/conf/ssl.key/server.key -x509 -days 365 -out /etc/httpd/conf/ssl.crt/server.crt
Enter pass phrase for /etc/httpd/conf/ssl.key/server.key:************(パスフレーズ)
You are about to be asked to enter information that will be incorporated
into your certificate request.
What you are about to enter is what is called a Distinguished Name or a DN.
There are quite a few fields but you can leave some blank
For some fields there will be a default value,
If you enter '.', the field will be left blank.
-----
Country Name (2 letter code) [GB]:JP
State or Province Name (full name) [Berkshire]:Fukuoka
Locality Name (eg, city) [Newbury]:Fukuoka
Organization Name (eg, company) [My Company Ltd]:bravotouring.com
Organizational Unit Name (eg, section) []:authorization
Common Name (eg, your name or your server's hostname) []:www.bravotouring.com
Email Address []:webmaster@bravotouring.com
[root@nx9030 conf]# ### 3. apache起動時に止まらないよう秘密鍵からパスフレーズを削除 ###
[root@nx9030 conf]# /usr/bin/openssl rsa -in ssl.key/server.key -out ssl.key/server.key
Enter pass phrase for server.key:************(パスフレーズ)
writing RSA key
[root@nx9030 conf]# ### 終了 ###