[users@httpd] How to restrict page access to certain IPs using Apache httpd 2.4

2020-10-13 Thread Anders Wong
Hi HTTP apache community, I have a Location and Directory directive configured within VirtualHost and I would like to restrict only 10.75.x.x IPs to access the URL "http:// /ords". The access restriction is not working in directive as any client IPs still can access the URL after the

[users@httpd] Modifying an environment variable

2020-10-13 Thread Erik Thuning
Hi! I have apache 2.4 as a reverse proxy in front of a go application in order to integrate with my SSO. The proxied app apparently doesn't allow @ in usernames, which becomes a problem because all usernames that will be coming in from SSO are of the format "f...@example.com". I would like t

Re: [users@httpd] Re: conditionally create a Virtual Host?

2020-10-13 Thread Eric Covener
On Tue, Oct 13, 2020 at 8:11 AM Heather Lotz wrote: > > Was this change released in a patch or will it be released in the next minor > version? The change is part of 2.4.43 (and later) - To unsubscribe, e-mail: users-unsubscr..

[users@httpd] Re: conditionally create a Virtual Host?

2020-10-13 Thread Heather Lotz
Was this change released in a patch or will it be released in the next minor version? From: Christophe JAILLET Sent: Thursday, September 5, 2019 2:12 PM To: users@httpd.apache.org ; Heather Lotz Subject: Re: conditionally create a Virtual Host? Hi, we don't h

Re: [users@httpd] Configuring KeepAliveTimeout to individual URIs

2020-10-13 Thread Daniel Ferradal
Perhaps you want to adjust timeout for that backend? For example if you are proxying to a backend that takes about 100 seconds for /path/ ProxyPass /path/ https://backend/path/ timeout=120 El mié., 7 oct. 2020 a las 14:41, alchemist vk () escribió: > > Hi Eric, > I agree with you.. "keepalive ti

Re: [users@httpd] CentOS 8 / Apache 2.4.37 / Optimzing

2020-10-13 Thread Daniel Ferradal
Hello, Prefork was just needed if you are loading a module which is not thread safe, so do not use it if you are proxying to php-fpm. mpm_event is probably the best MPM you can use, it is optimized for threading and quoting the docs it has "dedicated listener thread for each process to handle bo