Allow /v1/_ping run unauthenticated

This commit is contained in:
Konrad Kleine 2014-10-10 13:51:41 +02:00
parent 48f74695ce
commit d5430d475f

View file

@ -40,4 +40,10 @@
SSLCertificateKeyFile /etc/apache2/server.key
</IfModule>
# Allow ping and users to run unauthenticated.
<Location /v1/_ping>
Satisfy any
Allow from all
</Location>
</VirtualHost>