thefinn93 / ansible-letsencrypt

An ansible role to generate TLS certificates and get them signed by Let's Encrypt
GNU General Public License v3.0
440 stars 122 forks source link

HAProxy #51

Open ivomarino opened 7 years ago

ivomarino commented 7 years ago

Any Infos about Integrating this with HAProxy?

thefinn93 commented 7 years ago

I don't think HAproxy can serve files off the disk, so you'll proly need to setup something to handle serving the files, then haproxy back.

ivomarino commented 7 years ago

Yes it can, I parse certs from /etc/Certs.

ivomarino commented 7 years ago

/etc/certs I mean.

rfleschenberg commented 7 years ago

If you have software that expects the certs to be in a specific location, just symlink them.This works as long as the software has the necessary permission to read the files in /etc/letsencrypt. If that is not the case, copy the certs in your renew hook.

ivomarino commented 7 years ago

Sounds good, I'll check, thanks