aboutsummaryrefslogtreecommitdiffstats
path: root/roles/nginx/tasks
diff options
context:
space:
mode:
Diffstat (limited to 'roles/nginx/tasks')
-rw-r--r--roles/nginx/tasks/main.yml30
1 files changed, 30 insertions, 0 deletions
diff --git a/roles/nginx/tasks/main.yml b/roles/nginx/tasks/main.yml
new file mode 100644
index 0000000..d3a6204
--- /dev/null
+++ b/roles/nginx/tasks/main.yml
@@ -0,0 +1,30 @@
+---
+- name: Ensure that the Apache web server is not installed
+ apt:
+ name: "{{ item }}"
+ state: absent
+ with_items: "{{ apache_packages_to_remove }}"
+
+- name: Install Nginx
+ apt:
+ name: nginx
+ state: present
+
+- name: Update Nginx configuration
+ copy:
+ src: nginx.conf
+ dest: /etc/nginx/nginx.conf
+ owner: root
+ group: root
+ mode: 0644
+ notify: Restart Nginx
+
+- name: Set up Nginx sites
+ file:
+ path: /etc/nginx/{{ item }}
+ state: directory
+ with_items:
+ - sites-available
+ - sites-enabled
+
+# vim: set ft=yaml sw=2: