deaae4f665
A copy of the filter used for our Gitea farm, this same activity has been showing up on our tarballs.opendev.org site as well which is consuming available connection slots for all vhosts on the static server. This is implemented as a macro so that it can be included into additional vhosts, and put into a separate role so that it can be added to all playbooks which need it. A subsequent change will add it to the Gitea servers, eliminating the redundant copy there. Change-Id: Ic2020b753076209f7708f76744fdf746bf933bd9
16 lines
506 B
YAML
16 lines
506 B
YAML
- hosts: "static:!disabled"
|
|
name: "Static webserver"
|
|
roles:
|
|
- role: iptables
|
|
- role: kerberos-client
|
|
kerberos_realm: 'OPENSTACK.ORG'
|
|
kerberos_admin_server: 'kdc.openstack.org'
|
|
kerberos_kdcs:
|
|
- kdc03.openstack.org
|
|
- kdc04.openstack.org
|
|
- role: openafs-client
|
|
openafs_client_cache_size: "{{ afs_client_cache_size | default(50000000) }}" # 50GiB
|
|
openafs_client_cache_directory: '/opt/cache/openafs'
|
|
- role: apache-ua-filter
|
|
- role: static
|