Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 915 Bytes

kinto.notmyidea.org

File metadata and controls

28 lines (21 loc) · 915 Bytes

server { listen 443 ssl; listen 80; server_name kinto.notmyidea.org;

ssl_certificate /etc/letsencrypt/live/blog.notmyidea.org/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/blog.notmyidea.org/privkey.pem;

include /home/poils/letsencrypt/letsencrypt-nginx/letsencrypt_nginx/options-ssl-nginx.conf;

location / { proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme;

proxy_pass http://127.0.0.1:9007; proxy_read_timeout 90;

proxy_redirect http://127.0.0.1:9007 https://kinto.notmyidea.org; }

if ($scheme != “https”) { return 301 https://$host$request_uri; } # managed by Certbot

}