|
1234567891011121314151617181920212223242526272829303132 |
- ---
-
- - import_tasks: local_facts.yaml
- - import_tasks: setup.yaml
- - import_tasks: download.yaml
-
- - import_tasks: database.yaml
- - import_tasks: deploy.yml
-
- - name: flush handlers
- meta: flush_handlers
-
- - include_role:
- name: certificate
- vars:
- certificate_name: gitea
- certificate_directory: /etc/ssl
- certificate_key_usage:
- - digitalSignature
- - keyEncipherment
- certificate_extended_key_usage:
- - serverAuth
- certificate_alt_names:
- - "{{ gitea_server_name | regex_replace( '(.*)','DNS:\\1' ) }}"
-
- - include_role:
- name: nginx
- vars:
- nginx_vhosts: "{{ _gitea_nginx_vhosts }}"
-
- - name: flush handlers
- meta: flush_handlers
|