On Mon, Jul 13, 2020 at 1:02 PM Danny Mallory <dmal...@gmail.com> wrote:
>
> Figure I would ask this here for the most graceful answer before making up my 
> own.  When running Apache for many vhosts (websites or acting as a reverse 
> proxy), is there a way to make the default site (no matching vhost) return a 
> 403 or 400 bad request similar to how Akamai does when no matching vhost is 
> found. Currently I have a default site that just returns the standard "It 
> works" 200 ok when no match is found..

You can use mod_asis which is pretty obscure, or RewriteRule ^ =
[R=4xx] (it accepts non-redirect codes and mostly works)
Or for 403, you could have a `require all denied` block in the vhost
for <Location />

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org

Reply via email to