The only major change that affects the configuration policy is the introduction of the `webhook.ALLOWED_HOST_LIST` setting. For some dumb reason, the default value of this setting *denies* access to machines on the local network. This makes no sense; why do they expect you to host your CI or whatever on a *public* network? Of course, the only reason given is "for security reasons."
12 lines
170 B
YAML
12 lines
170 B
YAML
- hosts: gitea
|
|
roles:
|
|
- apache
|
|
- role: gitea
|
|
tags: gitea
|
|
- sshd
|
|
tasks:
|
|
- name: ensure apache is running
|
|
service:
|
|
name=httpd
|
|
state=started
|