This repository has been archived on 2020-05-07. You can view files and clone it, but cannot push or open issues or pull requests.
dokku-ansible-deploy/plays/postdeploy/lib/http.yml

9 lines
183 B
YAML
Raw Normal View History

2020-04-13 10:49:14 +00:00
---
- name: Set HTTP 80 port proxy
dokku_ports:
2020-04-14 11:02:16 +00:00
app: "{{ dokku.app }}"
2020-04-13 10:49:14 +00:00
mappings:
2020-04-14 11:44:09 +00:00
- "http:80:{{ config.vars.port }}"
2020-04-13 10:49:14 +00:00
state: present
2020-04-16 21:43:29 +00:00
when: "'port' in config.vars"