ソースを参照

Replace source for source_path variable name

master
David Seira 7年前
コミット
bc7f8f4970
2個のファイルの変更6行の追加6行の削除
  1. +3
    -3
      nginx/ng/servers_config.sls
  2. +3
    -3
      pillar.example

+ 3
- 3
nginx/ng/servers_config.sls ファイルの表示

@@ -85,8 +85,8 @@ nginx_server_available_dir:
# Managed enabled/disabled state for servers
{% for server, settings in nginx.servers.managed.items() %}
{% if settings.config != None %}
{% if 'source' in settings.config %}
{% set source_path = settings.config.source %}
{% if 'source_path' in settings.config %}
{% set source_path = settings.config.source_path %}
{% else %}
{% set source_path = 'salt://nginx/ng/files/server.conf' %}
{% endif %}
@@ -97,7 +97,7 @@ nginx_server_available_dir:
- name: {{ server_curpath(server) }}
- source: {{ source_path }}
- template: jinja
{% if 'source' not in settings.config %}
{% if 'source_path' not in settings.config %}
- context:
config: {{ settings.config|json() }}
{% endif %}

+ 3
- 3
pillar.example ファイルの表示

@@ -77,7 +77,7 @@ nginx:
# nginx.conf (main server) declarations
# dictionaries map to blocks {} and lists cause the same declaration to repeat with different values
config:
source: salt://path_to_nginx_conf_file/nginx.conf # IMPORTANT: This option is mutually exclusive with the rest of the
source_path: salt://path_to_nginx_conf_file/nginx.conf # IMPORTANT: This option is mutually exclusive with the rest of the
# options; if it is found other options (worker_processes: 4 and so
# on) are not processed and just upload the file from source
worker_processes: 4
@@ -141,12 +141,12 @@ nginx:
# test something else;
# }
# }
mysite2: # Using source options to upload the file instead of templating all the file
mysite2: # Using source_path options to upload the file instead of templating all the file
enabled: True
available_dir: /etc/nginx/sites-available
enabled_dir: /etc/nginx/sites-enabled
config:
source: salt://path-to-site-file/mysite2
source_path: salt://path-to-site-file/mysite2

certificates_path: '/etc/nginx/ssl' # Use this if you need to deploy below certificates in a custom path.
# If you're doing SSL termination, you can deploy certificates this way.

読み込み中…
キャンセル
保存