1. Letsencrypt/設置/nginx.conf

/moin

https://www.digicert.com/csr-ssl-installation/nginx-openssl.htm

Nginxに設定追加

nginx.conf

server {
    listen 443;
    server_name  example.co.jp;

    ssl on;
    ssl_certificate ssl.pem;
    ssl_certificate_key ssl.key;

#(略)
}

MoinQ: Letsencrypt/証明書配置/nginx.conf (last edited 2022-02-10 03:40:57 by ToshinoriMaeno)