<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>サーバ証明書 | くまたんのサイト</title>
	<atom:link href="https://kmtn.net/tag/%e3%82%b5%e3%83%bc%e3%83%90%e8%a8%bc%e6%98%8e%e6%9b%b8/feed/" rel="self" type="application/rss+xml" />
	<link>https://kmtn.net</link>
	<description>ようこそ、くまのサイトへ</description>
	<lastBuildDate>Tue, 08 Apr 2025 05:58:06 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>https://kmtn.net/wp-content/uploads/2024/12/cropped-VEXX4HRh_400x400-32x32.jpg</url>
	<title>サーバ証明書 | くまたんのサイト</title>
	<link>https://kmtn.net</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Let&#8217;s Encrypt を導入しよう！</title>
		<link>https://kmtn.net/2016/05/30/lets-encrypt-%e3%82%92%e5%b0%8e%e5%85%a5%e3%81%97%e3%82%88%e3%81%86%ef%bc%81/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=lets-encrypt-%25e3%2582%2592%25e5%25b0%258e%25e5%2585%25a5%25e3%2581%2597%25e3%2582%2588%25e3%2581%2586%25ef%25bc%2581</link>
					<comments>https://kmtn.net/2016/05/30/lets-encrypt-%e3%82%92%e5%b0%8e%e5%85%a5%e3%81%97%e3%82%88%e3%81%86%ef%bc%81/#respond</comments>
		
		<dc:creator><![CDATA[くまたん]]></dc:creator>
		<pubDate>Mon, 30 May 2016 02:55:44 +0000</pubDate>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[インフラ]]></category>
		<category><![CDATA[構築]]></category>
		<category><![CDATA[HTTPS]]></category>
		<category><![CDATA[Let's Encrypt]]></category>
		<category><![CDATA[SSL/TLSサーバ証明書]]></category>
		<category><![CDATA[オレオレ証明書]]></category>
		<category><![CDATA[サーバ証明書]]></category>
		<guid isPermaLink="false">https://kmtn.net/?p=89</guid>

					<description><![CDATA[<p>CentOS7/Apache2.4にLet&#8217;s Encryptを導入してみましょう！ まず事前に必要なものを用意しましょう。 Let&#8217;s EncryptはGitHubから取得するのでgitが必要に...</p>
The post <a href="https://kmtn.net/2016/05/30/lets-encrypt-%e3%82%92%e5%b0%8e%e5%85%a5%e3%81%97%e3%82%88%e3%81%86%ef%bc%81/">Let’s Encrypt を導入しよう！</a> first appeared on <a href="https://kmtn.net">くまたんのサイト</a>.]]></description>
										<content:encoded><![CDATA[<p>CentOS7/Apache2.4にLet&#8217;s Encryptを導入してみましょう！</p>
<p><span id="more-89"></span></p>
<h3>まず事前に必要なものを用意しましょう。</h3>
<p>Let&#8217;s EncryptはGitHubから取得するのでgitが必要になります。また、ApacheでSSLを利用するためにはmod_sslが必要となるのでインストールしましょう。</p>
<pre class="lang:default decode:true"># yum install -y git openssl mod_ssl</pre>
<p>&nbsp;</p>
<h3>次にLet&#8217;s EncryptクライアントをGitHubから取得します。</h3>
<p>今回は/usr/local/配下に設置します。</p>
<pre class="lang:default decode:true"># cd /usr/local/
# git clone https://github.com/letsencrypt/letsencrypt
Cloning into 'letsencrypt'...
remote: Counting objects: 25288, done.
remote: Compressing objects: 100% (13/13), done.
remote: Total 25288 (delta 2), reused 0 (delta 0), pack-reused 25275
Receiving objects: 100% (25288/25288), 6.65 MiB | 727.00 KiB/s, done.
Resolving deltas: 100% (17714/17714), done.</pre>
<p>取得し終えたら以下のコマンドで利用準備を整えます。</p>
<pre class="lang:default decode:true"># cd letsencrypt
# ./letsencrypt-auto --help --debug</pre>
<p>&nbsp;</p>
<h3>サーバ証明書の発行をしましょう。</h3>
<pre class="lang:default decode:true"># ./letsencrypt-auto certonly --standalone -d [サーバアドレス]</pre>
<p>[サーバアドレス]にはお持ちのドメイン名(例：kmtn.net)を入力しましょう。</p>
<pre class="lang:default decode:true">IMPORTANT NOTES:
 - Congratulations! Your certificate and chain have been saved at
   /etc/letsencrypt/live/[your domain]/fullchain.pem. Your
   cert will expire on 2016-03-07. To obtain a new version of the
   certificate in the future, simply run Let's Encrypt again.
...</pre>
<p>上記のように表示されていれば発行は成功です！</p>
<p>&nbsp;</p>
<h3>Apacheへ設定しましょう。</h3>
<p>ssl.confへ以下のように記述し保存するだけです。</p>
<pre class="lang:default decode:true">[/etc/httpd/conf.d/ssl.conf]
...
SSLCertificateFile /etc/letsencrypt/live/[サーバーアドレス]/cert.pem
SSLCertificateKeyFile /etc/letsencrypt/live/[サーバーアドレス]/privkey.pem
SSLCertificateChainFile /etc/letsencrypt/live/[サーバーアドレス]/chain.pem
...</pre>
<p>&nbsp;</p>
<h3>Apacheを再起動し、反映しましょう。</h3>
<pre class="lang:default decode:true"># systemctl start httpd</pre>
<p>お疲れ様でした。これでサーバ証明書の設定は終わりです。</p>
<hr />
<p>どうでしょうか？比較的簡単に導入ができ、無料でサーバ証明書を取得できるこのLet&#8217;s Encryptは証明書業界にダメージを与えるかもしれませんね…</p>
<p>しかしこのように簡単に出来るのは自分のサーバーを持っている人からしたら嬉しい事ですね！</p>The post <a href="https://kmtn.net/2016/05/30/lets-encrypt-%e3%82%92%e5%b0%8e%e5%85%a5%e3%81%97%e3%82%88%e3%81%86%ef%bc%81/">Let’s Encrypt を導入しよう！</a> first appeared on <a href="https://kmtn.net">くまたんのサイト</a>.]]></content:encoded>
					
					<wfw:commentRss>https://kmtn.net/2016/05/30/lets-encrypt-%e3%82%92%e5%b0%8e%e5%85%a5%e3%81%97%e3%82%88%e3%81%86%ef%bc%81/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">89</post-id>	</item>
		<item>
		<title>Let&#8217;s Encrypt でサーバ証明書を！</title>
		<link>https://kmtn.net/2016/05/30/lets-encrypt-%e3%81%a7%e3%82%b5%e3%83%bc%e3%83%90%e8%a8%bc%e6%98%8e%e6%9b%b8%e3%82%92%ef%bc%81/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=lets-encrypt-%25e3%2581%25a7%25e3%2582%25b5%25e3%2583%25bc%25e3%2583%2590%25e8%25a8%25bc%25e6%2598%258e%25e6%259b%25b8%25e3%2582%2592%25ef%25bc%2581</link>
					<comments>https://kmtn.net/2016/05/30/lets-encrypt-%e3%81%a7%e3%82%b5%e3%83%bc%e3%83%90%e8%a8%bc%e6%98%8e%e6%9b%b8%e3%82%92%ef%bc%81/#respond</comments>
		
		<dc:creator><![CDATA[くまたん]]></dc:creator>
		<pubDate>Mon, 30 May 2016 02:29:04 +0000</pubDate>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[構築]]></category>
		<category><![CDATA[HTTPS]]></category>
		<category><![CDATA[Let's Encrypt]]></category>
		<category><![CDATA[SSL/TLSサーバ証明書]]></category>
		<category><![CDATA[VPS]]></category>
		<category><![CDATA[オレオレ証明書]]></category>
		<category><![CDATA[サーバ証明書]]></category>
		<category><![CDATA[ドメイン]]></category>
		<guid isPermaLink="false">https://kmtn.net/?p=85</guid>

					<description><![CDATA[<p>このサイトはLet&#8217;s Encryptを使用して、サーバ証明書を発行しています！ &#8212;そもそもLet&#8217;s Encryptってなに？ Let&#8217;s Encrypt は、認証局（C...</p>
The post <a href="https://kmtn.net/2016/05/30/lets-encrypt-%e3%81%a7%e3%82%b5%e3%83%bc%e3%83%90%e8%a8%bc%e6%98%8e%e6%9b%b8%e3%82%92%ef%bc%81/">Let’s Encrypt でサーバ証明書を！</a> first appeared on <a href="https://kmtn.net">くまたんのサイト</a>.]]></description>
										<content:encoded><![CDATA[<p>このサイトはLet&#8217;s Encryptを使用して、サーバ証明書を発行しています！</p>
<p><span id="more-85"></span></p>
<h3><em>&#8212;そもそもLet&#8217;s Encryptってなに？</em></h3>
<p>Let&#8217;s Encrypt は、認証局（<abbr title="Certificate Authority">CA</abbr>）として「SSL/TLSサーバ証明書」を無料で発行するとともに、証明書の発行・インストール・更新のプロセスを自動化することにより、TLS や HTTPS（TLSプロトコルによって提供されるセキュアな接続の上でのHTTP通信）を普及させることを目的としているプロジェクトです。</p>
<p>非営利団体の <a href="https://letsencrypt.jp/about/#ISRG">ISRG (Internet Security Research Group)</a> が運営しており、シスコ（Cisco Systems）、Akamai、電子フロンティア財団（Electronic Frontier Foundation）、モジラ財団（Mozilla Foundation）などの大手企業・団体が、<a href="https://letsencrypt.jp/about/#ISRG"><abbr title="Internet Security Research Group">ISRG</abbr></a> のスポンサーとして Let&#8217;s Encrypt を支援しています。</p>
<h3><em>&#8212;なにそれ、大丈夫なの？</em></h3>
<p>Let&#8217;s Encrypt は、認証局（<abbr title="Certificate Authority">CA</abbr>）サイドとウェブサイト管理者の安全なサーバ構築の補助の両面から、最先端の <abbr title="Transport Layer Security">TLS</abbr> を実装したプラットフォームを提供します。</p>
<h3><em>&#8212;へえ、じゃあどういう人に使われるの？</em></h3>
<p>ドメイン名を所持している人であれば、Let&#8217;s Encrypt を使うことで、誰でも信頼された証明書を無料で取得できます。</p>
<h3><em>&#8212;え？じゃあ今まであったオレオレ証明書とは何が違うの？</em></h3>
<p>オレオレ証明書では、URLのところに&#8221;☓&#8221;が付いていたはずです。また、ブラウザによってはセキュアではないと言われ、弾かれていたと思います。しかし、Let&#8217;s Encryptを利用することによって有料でSSLを発行しているところと変わらず無料で安全なサーバ証明書を発行することが出来るのです。</p>
<h2><em>&#8212;めっちゃいいじゃん！どうやって設定すんの教えて！</em></h2>
<p>記事にしました！</p>
<blockquote class="wp-embedded-content" data-secret="epRw6yZ6yH"><p><a href="https://kmtn.net/2016/05/30/lets-encrypt-%e3%82%92%e5%b0%8e%e5%85%a5%e3%81%97%e3%82%88%e3%81%86%ef%bc%81/">Let&#8217;s Encrypt を導入しよう！</a></p></blockquote>
<p><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted"  title="&#8220;Let&#8217;s Encrypt を導入しよう！&#8221; &#8212; くまたんのサイト" src="https://kmtn.net/2016/05/30/lets-encrypt-%e3%82%92%e5%b0%8e%e5%85%a5%e3%81%97%e3%82%88%e3%81%86%ef%bc%81/embed/#?secret=aZEMk94e2G#?secret=epRw6yZ6yH" data-secret="epRw6yZ6yH" width="600" height="338" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe></p>The post <a href="https://kmtn.net/2016/05/30/lets-encrypt-%e3%81%a7%e3%82%b5%e3%83%bc%e3%83%90%e8%a8%bc%e6%98%8e%e6%9b%b8%e3%82%92%ef%bc%81/">Let’s Encrypt でサーバ証明書を！</a> first appeared on <a href="https://kmtn.net">くまたんのサイト</a>.]]></content:encoded>
					
					<wfw:commentRss>https://kmtn.net/2016/05/30/lets-encrypt-%e3%81%a7%e3%82%b5%e3%83%bc%e3%83%90%e8%a8%bc%e6%98%8e%e6%9b%b8%e3%82%92%ef%bc%81/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">85</post-id>	</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/

Page Caching using Disk: Enhanced (SSL caching disabled) 
Disk を使用して圧縮する
Disk を使用してデータベースキャッシュ

Served from: kmtn.net @ 2026-06-04 12:44:48 by W3 Total Cache
-->