0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Windows certbotでLet's Encryptの証明書を新規取得及び自動更新、 Flask を cheroot で https(TLS/SSL) 公開するメモ。

Last updated at Posted at 2024-09-15

環境

Windows 11 Pro
Python 3.12.5
pip 24.2
certbot 2.11.0
flask 2.1.5
cheroot 10.0.1

certbot インストール

> pip install certbot
> where certbot
C:\Users\admin\.pyenv\pyenv-win\shims\certbot
C:\Users\admin\.pyenv\pyenv-win\shims\certbot.bat

ポート開放およびファイアーウォール

port 80
port 443

ポート未使用確認

REM ポート〇 確認
> netstat -ano | findstr 0.0.0.0:80
> netstat -ano | findstr 0.0.0.0:443
REM PID確認
tasklist /FI "PID eq <プロセスID>"
REM 強制終了
taskkill /PID <プロセスID> /F

REM IIS 稼働確認と停止
> iisreset /status 
> iisreset /stop 

管理者権限でDNS-01チャレンジでワイルドカード証明書を取得する

*example.com のようなワイルドカード証明書を取得するには DNS-01チャレンジ を使用する必要があるようだ。
この記事の通りにやってみる。
Let's EncryptのDNS-01チャレンジでのSSL証明書更新(手動)

管理者権限:ワイルドカード証明書を取得するコマンド.bat
> certbot certonly --manual --server https://acme-v02.api.letsencrypt.org/directory --preferred-challenges dns -d *.example.com -d example.com -m webmaster@example.com --agree-tos

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Would you be willing, once your first certificate is successfully issued, to
share your email address with the Electronic Frontier Foundation, a founding
partner of the Let's Encrypt project and the non-profit organization that
develops Certbot? We'd like to send you email about our work encrypting the web,
EFF news, campaigns, and ways to support digital freedom.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
(Y)es/(N)o: N ← 入力

Account registered.
Requesting a certificate for *.example.com and example.com

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Please deploy a DNS TXT record under the name:

_acme-challenge.example.com.

with the following value:

LKnLeFrAs3Kq_G0eRCAMxgFThash6Xyl3vAQIjO0k3M

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Press Enter to ContinueEnter 押したらダメ!

★ DNS レコードの追加を行う
https://www.onamae.com/domain/navi/dns_controll/input

列名 : ホスト名 TYPE TTL VALUE 優先 状態 削除

ホスト名:_acme-challenge
TYPE:TXT
TTL:3600
VALUE:SVnekx2jayDaOfu-1laxvCdnzJWrFgaytHfzw7GFDooCI
状態:有効

追加が終わって数分?数十分?(反映にどのくらいかかるか不明)
反映されているかチェックURL
https://toolbox.googleapps.com/apps/dig/#TXT/_acme-challenge.example.com
反映されていれば Enter 押す。

DNS再登録.bat
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Please deploy a DNS TXT record under the name:

_acme-challenge.example.com.

with the following value:

gSPCf0BatD9K7YdtjbqDNyQdgatEdWLq-XAWc_FXss

(This must be set up in addition to the previous challenges; do not remove,
replace, or undo the previous challenge tasks yet. Note that you might be
asked to create multiple distinct TXT records with the same name. This is
permitted by DNS standards.)

Before continuing, verify the TXT record has been deployed. Depending on the DNS
provider, this may take some time, from a few seconds to multiple minutes. You can
check if it has finished deploying with aid of online tools, such as the Google
Admin Toolbox: https://toolbox.googleapps.com/apps/dig/#TXT/_acme-challenge.example.com.
Look for one or more bolded line(s) below the line ';ANSWER'. It should show the
value(s) you've just added.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

※ DNS再登録が出ない場合もある。
【重要】
もう1度★を繰り返す。
以前の値は消さないで追加する。

https://toolbox.googleapps.com/apps/dig/#TXT/_acme-challenge.example.com
にアクセスして値が 【2つ】 反映されているか確認する。
反映されていれば Enter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Successfully received certificate.
Certificate is saved at: C:\Certbot\live\example.com\fullchain.pem
Key is saved at:         C:\Certbot\live\example.com\privkey.pem
This certificate expires on 2024-12-29.
These files will be updated when the certificate renews.

NEXT STEPS:
- This certificate will not be renewed automatically. Autorenewal of --manual certificates requires the use of an authentication hook script (--manual-auth-hook) but one was not provided. To renew this certificate, repeat this same certbot command before the certificate's expiry date.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
If you like Certbot, please consider supporting our work by:
 * Donating to ISRG / Let's Encrypt:   https://letsencrypt.org/donate
 * Donating to EFF:                    https://eff.org/donate-le
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

これで成功!C:\Certbot を確認してみる。

証明書情報表示コマンド.bat
> certbot certificates

証明書の手動更新

証明書取得制限があるのでまずテストで実行するのが吉

【テスト】証明書更新コマンド.bat
> certbot renew --dry-run
証明書更新コマンド.bat
> certbot renew

※ renew 実行すると有効期限まで残り30日以下なら更新する。

強制的に証明書更新コマンド.bat
> certbot --force-renewal

証明書取得制限があるので乱用注意

タスクスケジューラーに登録して毎日実行

管理者権限で実行するように登録

update_ca.bat
certbot renew

cherootでhttps公開

管理者権限で実行する

main.py
from flask import Flask
from cheroot.wsgi import Server as WSGIServer
from cheroot.ssl.builtin import BuiltinSSLAdapter

domain   = 'example.com'
ssl_dir  = f'C:\\Certbot\\archive\\{domain}'
key_pem  = os.path.join(ssl_dir, 'privkey1.pem')
cert_pem = os.path.join(ssl_dir, 'cert1.pem')

app = Flask(__name__)

@app.route('/')
def hello_world():
    return 'Hello, World! This is a Flask app running on Waitress with HTTPS enabled.'

if __name__ == '__main__':
    server = WSGIServer(('0.0.0.0', 443), app)
    server.ssl_adapter = BuiltinSSLAdapter(cert_pem, key_pem)
    try:
        server.start()
    except KeyboardInterrupt:
        server.stop()

ポート開放確認

power shell

Test-NetConnection -ComputerName 192.168.0.200 -Port 443
Test-NetConnection -ComputerName example.com -Port 80

参考

123456

  1. Let’s Encrypt ドキュメント

  2. Certbot ドキュメント

  3. Let's Encrypt 総合ポータル コマンド解説

  4. certbot(Letsecnrypt)コマンド・オプションを真面目に理解する

  5. Let 's Encrypt サイトデバッグ

  6. 相手が信頼できることを確かめる「サーバー証明書」とは?

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?