37 lines
913 B
YAML
37 lines
913 B
YAML
- name: ensure directories exist
|
|
file:
|
|
path: "{{ item }}"
|
|
state: directory
|
|
mode: '0755'
|
|
loop:
|
|
- "{{ nginx_confd_folder }}"
|
|
- name: copy certificates
|
|
copy:
|
|
src: "{{ item }}"
|
|
dest: "{{ data_folder }}/nginx"
|
|
loop:
|
|
- localhost.key
|
|
- localhost.crt
|
|
- name: copy .conf file
|
|
template:
|
|
src: nginx.conf.j2
|
|
dest: "{{ data_folder }}/nginx/nginx.conf"
|
|
mode: '0755'
|
|
- name: run container
|
|
docker_container:
|
|
name: 'nginx'
|
|
image: nginx
|
|
volumes:
|
|
- "{{ data_folder }}/nginx/nginx.conf:/etc/nginx/nginx.conf"
|
|
- "{{ data_folder }}/nginx/localhost.crt:/etc/nginx/localhost.crt"
|
|
- "{{ data_folder }}/nginx/localhost.key:/etc/nginx/localhost.key"
|
|
- "{{ nginx_confd_folder }}:/etc/nginx/conf.d"
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
env:
|
|
NGINX_HOST: "{{ base_domain }}"
|
|
NGINX_PORT: '80'
|
|
state: started
|
|
restart: yes
|