Explorar el Código

Merge pull request #17 from michaelkuty/feature/api_ssl

Support letsencrypt certs for API.
tags/2016.12
Filip Pytloun hace 8 años
padre
commit
f2f9ace4c4
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. +4
    -1
      salt/files/_api.conf

+ 4
- 1
salt/files/_api.conf Ver fichero

@@ -5,7 +5,10 @@ rest_cherrypy:
port: {{ api.bind.port }}
host: {{ api.bind.address }}
{%- if api.get('ssl', {}).get('enabled', False) %}
{%- if api.ssl.engine == 'salt' %}
{%- if api.ssl.engine == 'letsencrypt' %}
ssl_crt: /etc/letsencrypt/live/{{ api.ssl.name }}/cert.pem
ssl_key: /etc/letsencrypt/live/{{ api.ssl.name }}/privkey.pem
{%- elif api.ssl.engine == 'salt' %}
ssl_crt: /etc/ssl/certs/{{ system.name }}.{{ system.domain }}.crt
ssl_key: /etc/ssl/private/{{ system.name }}.{{ system.domain }}.key
{%- else %}

Cargando…
Cancelar
Guardar