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

View file

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