New version of salt-formula from Saltstack
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

16 行
490B

  1. {%- from "linux/map.jinja" import system with context %}
  2. {%- from "salt/map.jinja" import api with context %}
  3. rest_cherrypy:
  4. port: {{ api.bind.port }}
  5. host: {{ api.bind.address }}
  6. {%- if api.get('ssl', {}).get('enabled', False) %}
  7. ssl_crt: /etc/ssl/certs/{{ system.name }}.{{ system.domain }}.crt
  8. ssl_key: /etc/ssl/private/{{ system.name }}.{{ system.domain }}.key
  9. {%- else %}
  10. disable_ssl: True
  11. {%- endif %}
  12. {%- if api.get('debug', False) %}
  13. debug: True
  14. {%- endif %}