Ver código fonte

Merge pull request #177 from Perceptyx/fix_config_require

Servers config should require available/enabled dirs
tags/v0.55.0
N 6 anos atrás
pai
commit
698f7cc724
Nenhuma conta vinculada ao e-mail do autor do commit
2 arquivos alterados com 5 adições e 1 exclusões
  1. +3
    -1
      nginx/ng/map.jinja
  2. +2
    -0
      nginx/ng/servers_config.sls

+ 3
- 1
nginx/ng/map.jinja Ver arquivo

@@ -154,7 +154,9 @@
'disabled_postfix': '.disabled',
'symlink_opts': {},
'rename_opts': {},
'managed_opts': {},
'managed_opts': {
'makedirs': True,
},
'dir_opts': {
'makedirs': True,
},

+ 2
- 0
nginx/ng/servers_config.sls Ver arquivo

@@ -112,6 +112,8 @@ nginx_server_available_dir:
- name: {{ server_curpath(server) }}
- source: {{ source_path }}
- template: jinja
- require_in:
- service: nginx_service
{% if 'source_path' not in settings.config %}
- context:
config: {{ settings.config|json() }}

Carregando…
Cancelar
Salvar