summaryrefslogtreecommitdiffstats
path: root/pad-proxy/tasks/main.yml
diff options
context:
space:
mode:
Diffstat (limited to 'pad-proxy/tasks/main.yml')
-rw-r--r--pad-proxy/tasks/main.yml21
1 files changed, 0 insertions, 21 deletions
diff --git a/pad-proxy/tasks/main.yml b/pad-proxy/tasks/main.yml
deleted file mode 100644
index 8de72df..0000000
--- a/pad-proxy/tasks/main.yml
+++ /dev/null
@@ -1,21 +0,0 @@
----
-- name: Set up Nginx as root
- become: true
- block:
- - name: Install Nginx
- apt:
- name: nginx
- state: present
- - name: Add proxy configuration
- template:
- src: etherpad.nginx.conf
- dest: /etc/nginx/sites-available/pad.emacsconf.org
- - name: Enable site
- file:
- src: /etc/nginx/sites-available/pad.emacsconf.org
- dest: /etc/nginx/sites-enabled/pad.emacsconf.org
- state: link
- - name: Reload nginx
- service:
- name: nginx
- state: reloaded