homelab/roles/nginx/tasks/main.yml

37 lines
913 B
YAML
Raw Normal View History

2021-04-26 20:35:59 +00:00
- name: ensure directories exist
file:
path: "{{ item }}"
state: directory
mode: '0755'
loop:
- "{{ nginx_confd_folder }}"
2021-04-26 21:54:10 +00:00
- name: copy certificates
copy:
src: "{{ item }}"
dest: "{{ data_folder }}/nginx"
loop:
- localhost.key
- localhost.crt
2021-04-26 20:35:59 +00:00
- 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:
2021-04-26 20:35:59 +00:00
- "{{ data_folder }}/nginx/nginx.conf:/etc/nginx/nginx.conf"
2021-04-26 21:54:10 +00:00
- "{{ 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"
2021-04-26 21:54:10 +00:00
- "443:443"
env:
NGINX_HOST: "{{ base_domain }}"
NGINX_PORT: '80'
state: started
restart: yes