Selaa lähdekoodia

feat(servers_config): add require statement to manage dependencies

Also, check config before applying
tags/v2.7.0
Javier Bértoli 3 vuotta sitten
vanhempi
commit
622d22f971
5 muutettua tiedostoa jossa 22 lisäystä ja 6 poistoa
  1. +0
    -3
      nginx/config.sls
  2. +6
    -0
      nginx/servers_config.sls
  3. +3
    -0
      nginx/service.sls
  4. +12
    -0
      pillar.example
  5. +1
    -3
      test/salt/passenger/pillar/nginx.sls

+ 0
- 3
nginx/config.sls Näytä tiedosto

@@ -31,6 +31,3 @@ nginx_config:
- context:
config: {{ nginx.server.config|json(sort_keys=False) }}
{% endif %}
{% if nginx.check_config_before_apply %}
- check_cmd: /usr/sbin/nginx -t -c
{% endif %}

+ 6
- 0
nginx/servers_config.sls Näytä tiedosto

@@ -123,6 +123,12 @@ nginx_server_available_dir:
}}
- makedirs: True
- template: jinja
{%- if 'requires' in settings %}
- require:
{%- for k, v in settings.requires.items() %}
- {{ k }}: {{ v }}
{%- endfor %}
{%- endif %}
{% if 'source_path' not in settings.config %}
- context:
config: {{ settings.config|json(sort_keys=False) }}

+ 3
- 0
nginx/service.sls Näytä tiedosto

@@ -42,3 +42,6 @@ nginx_service:
{% else %}
- pkg: nginx_install
{% endif %}
{% if nginx.check_config_before_apply %}
- only_if: /usr/sbin/nginx -t
{% endif %}

+ 12
- 0
pillar.example Näytä tiedosto

@@ -202,6 +202,18 @@ nginx:
# and None indicates no action
enabled: true

# This let's you add dependencies on other resources being applied for a
# particular vhost
# A common case is when you use this formula together with letsencrypt's,
# validating through nginx: you need nginx running (to validate the vhost) but
# can't have the ssl vhost up until the certificate is created (because it
# won't exist and will make nginx fail to load the configuration)
#
# An example, when using LE to create the cert for 'some.host.domain':
# requires:
# cmd: create-initial-cert-some.host.domain
requires: {}

# Remove the site config file shipped by nginx
# (i.e. '/etc/nginx/sites-available/default' by default)
# It also remove the symlink (if it is exists).

+ 1
- 3
test/salt/passenger/pillar/nginx.sls Näytä tiedosto

@@ -26,7 +26,6 @@ nginx:
- location ^~ /.well-known/acme-challenge/:
- proxy_pass: http://localhost:9999
server:

config:
# This is required to get the passenger module loaded
# In Debian it can be done with this
@@ -64,5 +63,4 @@ nginx:
- index: 'index.html index.htm'
- location ~ .htm:
- try_files: '$uri $uri/ =404'
# - include: '/etc/nginx/snippets/letsencrypt.conf'
- include: 'snippets/letsencrypt.conf'
- include: '/etc/nginx/snippets/letsencrypt.conf'

Loading…
Peruuta
Tallenna