1
0
mirror of https://github.com/krislamo/vagrant-easyredmine synced 2024-09-20 07:40:34 +00:00
vagrant-easyredmine/roles/easyredmine/tasks/nginx.yml

79 lines
2.0 KiB
YAML
Raw Normal View History

2018-03-20 17:04:30 +00:00
- name: set up Passenger YUM repo
get_url:
url: https://oss-binaries.phusionpassenger.com/yum/definitions/el-passenger.repo
dest: /etc/yum.repos.d/passenger.repo
2016-07-14 03:15:07 +00:00
become: yes
2018-03-20 17:04:30 +00:00
- name: install gpg key for Passenger YUM repo
rpm_key:
key: https://packagecloud.io/gpg.key
2016-07-14 03:15:07 +00:00
become: yes
# this makecache is mostly because I can not find any other way to fully
# import the GPG. key for the Passenger repo. 'rpm_key' is not
# sufficient.
# The use of /usr/bin/env is a hack to avoid Ansible's "Consider using
# yum module..." warnings when it sees 'yum' as the primary command.
2018-03-20 17:04:30 +00:00
- name: yum makecache
command: /usr/bin/env yum -q makecache -y --disablerepo='*' --enablerepo='passenger*'
2016-07-14 03:15:07 +00:00
become: yes
changed_when: False
2018-03-20 17:04:30 +00:00
- name: install epel-release
yum:
name: epel-release
2016-07-14 03:15:07 +00:00
become: yes
2015-11-18 23:02:49 +00:00
- name: install nginx, passenger
yum:
2020-06-11 15:49:37 +00:00
name: ['nginx', 'passenger', 'nginx-mod-http-passenger']
2016-07-14 03:15:07 +00:00
become: yes
2018-03-20 17:04:30 +00:00
- name: check for dharam pem file
stat:
path: '{{ dharam_pem_path }}'
register: dharam_pem
# https://michael.lustfield.net/nginx/getting-a-perfect-ssl-labs-score
- name: generate new Diffie-Hellman group
command: 'openssl dhparam -out {{ dharam_pem_path }} 2048'
2016-07-14 03:15:07 +00:00
become: yes
notify: restart nginx
when: dharam_pem.stat.exists == False
2020-06-11 15:49:37 +00:00
- name: install easyredmine.conf to Nginx
2018-03-20 17:04:30 +00:00
template:
dest: '/etc/nginx/conf.d/easyredmine.conf'
src: easyredmine.conf.j2
2016-07-14 03:15:07 +00:00
become: yes
notify: restart nginx
2018-03-20 17:04:30 +00:00
- name: install nginx.conf to Nginx
template:
dest: '/etc/nginx/nginx.conf'
src: nginx.conf.j2
2016-07-14 03:15:07 +00:00
become: yes
notify: restart nginx
2018-03-20 17:04:30 +00:00
- name: install passenger.conf to Nginx
template:
dest: /etc/nginx/conf.d/passenger.conf
src: passenger.conf.j2
2016-07-14 03:15:07 +00:00
become: yes
notify: restart nginx
2018-03-20 17:04:30 +00:00
- name: install TLS cert
copy:
dest: '/etc/pki/tls/certs/{{ ansible_fqdn }}.pem'
src: '{{ nginx_pem }}'
2016-07-14 03:15:07 +00:00
become: yes
2015-11-22 02:43:47 +00:00
notify: restart nginx
2021-04-20 16:06:22 +00:00
when: not is_production_vm
2015-11-22 02:43:47 +00:00
2018-03-20 17:04:30 +00:00
- name: manage Nginx service
service:
name: nginx
state: started
enabled: yes
2016-07-14 03:15:07 +00:00
become: yes