Samuli Silvius | 427850b | 2019-03-03 13:24:55 +0200 | [diff] [blame] | 1 | --- |
| 2 | simulated_hosts: |
| 3 | git: |
| 4 | http: |
| 5 | nexus: |
| 6 | all_simulated_hosts: |
| 7 | "{{ simulated_hosts.git + simulated_hosts.http + simulated_hosts.nexus }}" |
| 8 | |
| 9 | nginx: |
| 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áš Levora | a0ad5c1 | 2019-03-28 17:45:55 +0100 | [diff] [blame] | 22 | # Default rule for tarball naming translation |
| 23 | nginx_server_image_tar: "{{ nginx_server_image | regex_replace('(\\/|\\:)', '_') }}.tar" |