X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/9539317a22d8ea16f94b0e086507ab595d758216..ffe48ca94f89f3d7b71305b394e1f57ee633efed:/tools/salt-install/config_examples/multi_host/aws/pillars/nginx_download_configuration.sls diff --git a/tools/salt-install/config_examples/multi_host/aws/pillars/nginx_download_configuration.sls b/tools/salt-install/config_examples/multi_host/aws/pillars/nginx_download_configuration.sls index 9246fc11cb..4470a388a9 100644 --- a/tools/salt-install/config_examples/multi_host/aws/pillars/nginx_download_configuration.sls +++ b/tools/salt-install/config_examples/multi_host/aws/pillars/nginx_download_configuration.sls @@ -3,6 +3,8 @@ # # SPDX-License-Identifier: AGPL-3.0 +{%- import_yaml "ssl_key_encrypted.sls" as ssl_key_encrypted_pillar %} + ### NGINX nginx: servers: @@ -13,7 +15,7 @@ nginx: overwrite: true config: - server: - - server_name: download.__CLUSTER__.__DOMAIN__ + - server_name: download.__DOMAIN__ - listen: - 80 - location /: @@ -27,7 +29,7 @@ nginx: __CERT_REQUIRES__ config: - server: - - server_name: download.__CLUSTER__.__DOMAIN__ + - server_name: download.__DOMAIN__ - listen: - __KEEPWEB_EXT_SSL_PORT__ http2 ssl - index: index.html index.htm @@ -47,5 +49,8 @@ nginx: - include: snippets/ssl_hardening_default.conf - ssl_certificate: __CERT_PEM__ - ssl_certificate_key: __CERT_KEY__ - - access_log: /var/log/nginx/download.__CLUSTER__.__DOMAIN__.access.log combined - - error_log: /var/log/nginx/download.__CLUSTER__.__DOMAIN__.error.log + {%- if ssl_key_encrypted_pillar.ssl_key_encrypted.enabled %} + - ssl_password_file: {{ '/run/arvados/' | path_join(ssl_key_encrypted_pillar.ssl_key_encrypted.privkey_password_filename) }} + {%- endif %} + - access_log: /var/log/nginx/download.__DOMAIN__.access.log combined + - error_log: /var/log/nginx/download.__DOMAIN__.error.log