Saltstack Official Nginx Formula
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

21 行
544B

  1. # nginx.ng.snippet
  2. #
  3. # Manages creation of snippets
  4. {% from 'nginx/ng/map.jinja' import nginx, sls_block with context %}
  5. nginx_snippets_dir:
  6. file.directory:
  7. {{ sls_block(nginx.servers.dir_opts) }}
  8. - name: {{ nginx.lookup.snippets_dir }}
  9. {% for snippet, config in nginx.snippets.items() %}
  10. nginx_snippet_{{ snippet }}:
  11. file.managed:
  12. - name: {{ nginx.lookup.snippets_dir }}/{{ snippet }}.conf
  13. - source: salt://nginx/ng/files/server.conf
  14. - template: jinja
  15. - context:
  16. config: {{ config|json() }}
  17. {% endfor %}