0fc507055d
BREAKING CHANGE: all previous `nginx` based configurations must be reviewed; `nginx.ng` usage must be promoted to `nginx` and any uses of the original `nginx` will have to be converted.
31 lines
583 B
Plaintext
31 lines
583 B
Plaintext
# nginx
|
|
#
|
|
# Meta-state to fully install nginx.
|
|
|
|
{% from 'nginx/map.jinja' import nginx, sls_block with context %}
|
|
|
|
include:
|
|
- nginx.config
|
|
- nginx.service
|
|
{% if nginx.snippets is defined %}
|
|
- nginx.snippets
|
|
{% endif %}
|
|
- nginx.servers
|
|
- nginx.certificates
|
|
|
|
extend:
|
|
nginx_service:
|
|
service:
|
|
- listen:
|
|
- file: nginx_config
|
|
- require:
|
|
- file: nginx_config
|
|
nginx_config:
|
|
file:
|
|
- require:
|
|
{% if nginx.install_from_source %}
|
|
- cmd: nginx_install
|
|
{% else %}
|
|
- pkg: nginx_install
|
|
{% endif %}
|