Add an apache configuration file to redirect .well-known

Signed-off-by: Pierre-Yves Chibon <pingou@pingoured.fr>
This commit is contained in:
Pierre-Yves Chibon 2018-10-31 16:00:07 +01:00
parent e0ea51494a
commit cf997f221e
2 changed files with 6 additions and 0 deletions

View file

@ -41,6 +41,7 @@
- { file: endpoints.py, location: /etc/fedmsg.d/ }
- { file: ci-resultsdb-listener.py, location: /etc/fedmsg.d/ }
- { file: settings.py, location: /etc/resultsdb/ }
- { file: cert.conf, location: /etc/httpd/conf.d/ }
notify:
- reload httpd

View file

@ -0,0 +1,5 @@
<VirtualHost *:80>
ServerName resultsdb.ci.centos.org
ProxyPass "/.well-known/acme-challenge" "http://certgetter01/.well-known/acme-challenge"
</VirtualHost>