ansible-ffibk/roles/service-nginx/tasks/main.yml
2017-12-29 20:31:46 +01:00

62 lines
1.3 KiB
YAML

---
- name: add official nginx apt key
apt_key:
state: present
id: 7BD9BF62
url: "https://nginx.org/keys/nginx_signing.key"
- name: add official nginx apt repository
apt_repository:
state: present
repo: "{{ item }}"
update_cache: yes
filename: nginx
with_items:
- deb http://nginx.org/packages/debian/ stretch nginx
- deb-src http://nginx.org/packages/debian/ stretch nginx
- name: install nginx packages
package:
name: nginx
state: present
- name: write nginx configuration nginx.conf
template:
src: nginx.conf.j2
dest: /etc/nginx/nginx.conf
mode: 0644
owner: root
group: root
notify: reload nginx
- name: write nginx configuration default.conf
template:
src: default.conf.j2
dest: /etc/nginx/conf.d/default.conf
mode: 0644
notify: reload nginx
- name: manage html directory for static files
file:
path: /var/www/html/static
state: directory
mode: 0755
- name: copy css stylesheet
copy:
src: style.css
dest: /var/www/html/static/style.css
mode: 0644
- name: write index.html
template:
src: index.html.j2
dest: /var/www/html/index.html
mode: 0644
- name: configure systemd unit nginx
systemd:
name: nginx
state: started
enabled: yes