Merge pull request #1 from Kedoia/Kedoia-patch-1

Update INSTALL.md
This commit is contained in:
Kedoia 2018-09-08 10:04:28 +02:00 committed by GitHub
commit 0116b5ee7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -182,6 +182,7 @@ Here is a sample Nginx configuration for a Plume instance (replace `blog.example
```nginx ```nginx
server { server {
listen 80; listen 80;
listen [::]:80;
server_name blog.example.com; server_name blog.example.com;
location /.well-known/acme-challenge {} location /.well-known/acme-challenge {}
@ -191,11 +192,13 @@ server {
} }
server { server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name blog.example.org; server_name blog.example.org;
access_log /var/log/nginx/access.log; access_log /var/log/nginx/access.log;
root /home/plume/Plume/ ; root /home/plume/Plume/ ;
listen [::]:443 ssl; # managed by Certbot
SSLCertificateFile /etc/letsencrypt/live/blog.example.com/cert.pem SSLCertificateFile /etc/letsencrypt/live/blog.example.com/cert.pem
SSLCertificateKeyFile /etc/letsencrypt/live/blog.example.com/privkey.pem SSLCertificateKeyFile /etc/letsencrypt/live/blog.example.com/privkey.pem
SSLCertificateChainFile /etc/letsencrypt/live/blog.example.com/chain.pem SSLCertificateChainFile /etc/letsencrypt/live/blog.example.com/chain.pem