Merge pull request #138 from nakazawakan/feature/ssl

Feature/ssl
このコミットが含まれているのは:
chankan77 2021-12-01 10:50:28 +09:00 committed by GitHub
コミット 1ef9cc97e8
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更4行の追加0行の削除

ファイルの表示

@ -4,6 +4,10 @@ server {
server_name kikikan.xyz;
root /work/public;
# Redirect to HTTPS
return 301 https://$host$request_uri;
# SSL化
ssl_certificate /etc/letsencrypt/live/kikikan.xyz/cert.pem;
ssl_certificate_key /etc/letsencrypt/live/kikikan.xyz/privkey.pem;