You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ---
-
- - name: nginx nextcloud vhost
- template:
- src: nginx-vhost.conf.j2
- dest: /etc/nginx/sites-available/onlyoffice
- notify: restart nginx
-
- - name: remove default onlyoffice config
- file:
- path: /etc/nginx/conf.d/ds.conf
- state: absent
- notify: restart nginx
-
- - name: nginx nextcloud vhost enabled
- file:
- src: ../sites-available/onlyoffice
- dest: /etc/nginx/sites-enabled/onlyoffice
- state: link
- notify: restart nginx
-
- - name: start nginx
- service:
- name: nginx
- state: started
|