blob: 260de9bfd73f17e2e90f124ec7193ec80a9e554d [file] [log] [blame]
Samuli Silvius427850b2019-03-03 13:24:55 +02001---
2simulated_hosts:
3 git:
4 http:
5 nexus:
6all_simulated_hosts:
7 "{{ simulated_hosts.git + simulated_hosts.http + simulated_hosts.nexus }}"
8
9nginx:
10 ports:
11 - "80:80"
12 - "443:443"
13 - "10001:443"
14 volumes:
15 - "{{ app_data_path }}/cfg/nginx.conf:/etc/nginx/nginx.conf:ro"
16 - "{{ app_data_path }}/certs:/etc/nginx/certs:ro"
17 - "{{ app_data_path }}/git-repo:/srv/git:rw"
18 - "{{ app_data_path }}/http:/srv/http:rw"
19 - "{{ app_data_path }}/pkg/rhel:/srv/http/repo.infra-server/rhel:rw"
20 - "{{ app_data_path }}/pkg/ubuntu/xenial:/srv/http/repo.infra-server/ubuntu/xenial:rw"
21 - /var/log/nginx:/var/log/nginx:rw
Tomáš Levoraa0ad5c12019-03-28 17:45:55 +010022# Default rule for tarball naming translation
23nginx_server_image_tar: "{{ nginx_server_image | regex_replace('(\\/|\\:)', '_') }}.tar"