coursework/ansible/roles/nginx_proxy/tasks/main.yml

34 lines
665 B
YAML
Raw Normal View History

2024-11-12 20:14:17 +00:00
- name: Install Nginx
zypper:
name: nginx
state: present
- name: Ensure Nginx is enabled and started
systemd:
name: nginx
enabled: yes
state: started
2024-11-17 15:46:24 +00:00
- name: Create directory for error pages
file:
path: /var/www/errors
state: directory
owner: nginx
group: nginx
mode: '0755'
- name: Deploy custom error page
template:
src: site_down.html.j2
dest: /var/www/errors/site_down.html
mode: '0644'
2024-11-12 20:14:17 +00:00
- name: Deploy Proxy Configuration
template:
src: proxy.conf.j2
dest: /etc/nginx/conf.d/proxy.conf
- name: Reload Nginx
systemd:
name: nginx
2024-11-17 16:10:08 +00:00
state: reloaded