Merge "ptgbot: have apache cache backend"

This commit is contained in:
Zuul 2023-01-15 14:09:48 +00:00 committed by Gerrit Code Review
commit aa4ed5fd97
2 changed files with 23 additions and 0 deletions

View File

@ -63,6 +63,9 @@
state: present
name: "{{ item }}"
loop:
- cache
- cache_disk
- cache_socache
- rewrite
- proxy
- proxy_http
@ -70,6 +73,14 @@
- headers
- proxy_wstunnel
- name: Ensure apache cache dir
file:
state: directory
path: '/var/cache/apache2/proxy'
owner: root
group: root
mode: 0755
- name: Copy apache config
template:
src: ptgbot.vhost.config.j2

View File

@ -42,6 +42,18 @@
SSLCertificateKeyFile /etc/letsencrypt-certs/ptg.opendev.org/ptg.opendev.org.key
SSLCertificateChainFile /etc/letsencrypt-certs/ptg.opendev.org/ca.cer
# Enable SHM backend
CacheSocache shmcb
# disk fallback
CacheRoot "/var/cache/apache2/proxy"
# required to match on rewrites
CacheQuickHandler off
# don't pass requests to backend
CacheIgnoreCacheControl On
CacheEnable socache /
CacheEnable disk /
ProxyPass / http://localhost:8000/ retry=0
ProxyPassReverse / http://localhost:8000/