Don't proxypass acme challenges

This commit is contained in:
Daniel Berteaud 2016-01-23 16:58:30 +01:00
parent 7fcbedf350
commit faed2617e1
1 changed files with 1 additions and 0 deletions

View File

@ -20,6 +20,7 @@ my @groups = split(/[;,]/, ($domain->prop('AllowGroups') || ''));
# ProxyPass ?
if ($target =~ m|https?://[\d\w\.\-/]*|){
$OUT .= " SetEnv proxy-nokeepalive 1\n" if ($keepalive eq 'yes');
$OUT .= " ProxyPass /.well-known/acme-challenge/ !\n";
$OUT .= " ProxyPass / $target\n";
$OUT .= " ProxyPassReverse / $target\n";
$OUT .= " ProxyPreserveHost on\n" if ($preserve eq 'yes');