Tag: letsencrypt

  • ssl and https with letsencrypt!

    nomorecubes.net now (finally) leverages https! It has a certificate from letsencrypt, automatically verified by the service, maintained and deployed by docker-letsencrypt-nginx-proxy-companion. The deployment has been considerably easy through docker-compose, adding the container to the existing nginx-proxy like this: version: ‘2’ services:nginx-proxy: image: jwilder/nginx-proxy container_name: nginx-proxy ports: – “80:80” – “443:443” volumes: – “./certs:/etc/nginx/certs:ro” – “/etc/nginx/vhost.d”…