This repository has been archived on 2020-05-12. You can view files and clone it, but cannot push or open issues or pull requests.
Egon Rijpkema 593082f710 Added role for jwilder nginx proxy.
This is useful when you want to handle ssl or when you want to proxy
multiple containers on a single host.
2018-02-13 10:07:24 +01:00

21 lines
502 B
YAML

# Install a nginx reverse proxy with a systemd unit file.
# See https://github.com/jwilder/nginx-proxy
---
- name: install service file.
template:
src: templates/nginx-proxy.service
dest: /etc/systemd/system/nginx-proxy.service
mode: 644
owner: root
group: root
- command: systemctl daemon-reload
- name: start service at boot.
command: systemctl reenable nginx-proxy.service
- name: make sure service is started
systemd:
name: nginx-proxy.service
state: restarted