2014-05-28 01:55:49 +02:00
|
|
|
# nginx.ng.config
|
2014-05-19 19:22:51 +02:00
|
|
|
#
|
|
|
|
# Manages the main nginx server configuration file.
|
|
|
|
|
2014-05-16 00:06:48 +02:00
|
|
|
{% from 'nginx/ng/map.jinja' import nginx, sls_block with context %}
|
|
|
|
|
|
|
|
nginx_config:
|
|
|
|
file.managed:
|
|
|
|
{{ sls_block(nginx.server.opts) }}
|
|
|
|
- name: {{ nginx.lookup.conf_file }}
|
|
|
|
- source: salt://nginx/ng/files/nginx.conf
|
|
|
|
- template: jinja
|
|
|
|
- context:
|
2014-05-21 21:13:13 +02:00
|
|
|
config: {{ nginx.server.config|json() }}
|