[users@httpd] MaxSpareThreads not being honored

2018-10-01 Thread Jerry Martinez
Could anyone tell me why Apache is not killing processes containing nothing but idle threads and whose aggregate total exceeds MaxSpareThreads? Here are some specs: Server Version: Apache/2.4.35 (Unix) OpenSSL/1.0.2l Server MPM: event All MPM Event settings are default with the exception of

Re: [users@httpd] 403 error upon upgrade

2018-10-01 Thread Frank Gingras
It is indeed recommended *not* to use for that very reason. If the module isn't loaded, then those directives will not be evaluated. Run apachectl -M to see loaded modules. On Mon, Oct 1, 2018 at 5:27 PM Filipe Cifali wrote: > Are you sure you have mod_php installed and active? This would

Re: [users@httpd] use cookie value as auth username

2018-10-01 Thread Jesse Norell
I'm still interested in any ideas to try to set REMOTE_USER from a cookie value. AuthBasicFake sounds like it would work, but when I use it authz_dbd still complains: AH00027: No authentication done but request not allowed without authentication for /whatever/file.txt. Authentication not

Re: [users@httpd] 403 error upon upgrade

2018-10-01 Thread Filipe Cifali
Are you sure you have mod_php installed and active? This would explain the failing DirIndex and all of this sudden change On Mon, 1 Oct 2018 at 17:36 Jack M. Nilles wrote: > /etc/apache2/conf.d/php5.conf is as follows: > > > >SetHandler application/x-httpd-php > >

Re: [users@httpd] 403 error upon upgrade

2018-10-01 Thread Jack M. Nilles
/etc/apache2/conf.d/php5.conf is as follows: SetHandler application/x-httpd-php SetHandler application/x-httpd-php-source DirectoryIndex index.php4 DirectoryIndex index.php5 DirectoryIndex index.php Why this doesn't

Re: [users@httpd] Re: Updating to php 7.0 and having apache still work?

2018-10-01 Thread Filipe Cifali
Then you ARE using the current mod_proxy_fcgi and not the old one, it's important to not confuse each when using / consulting docs, I suggest you reading this: https://wiki.apache.org/httpd/PHP-FPM If you are truly using mod_proxy_fcgi then it's only PHP-FPM fault, not httpd, you should not even

[users@httpd] Re: Updating to php 7.0 and having apache still work?

2018-10-01 Thread @lbutlr
On 01 Oct 2018, at 13:49, Filipe Cifali wrote: > This seems to be a problem inside mod_fcgi and not httpd, proxies in general > don't care about what's the language behind it, as long as the protocol is > being respected. Yes, that was my understanding as well, but even when I recompiled

Re: [users@httpd] Re: Updating to php 7.0 and having apache still work?

2018-10-01 Thread Filipe Cifali
Hi Lewis, This seems to be a problem inside mod_fcgi and not httpd, proxies in general don't care about what's the language behind it, as long as the protocol is being respected. Are you sure you are not getting into trouble just because you are not using mod_proxy_fcgi instead? Apache 2.4 docs

[users@httpd] Re: Updating to php 7.0 and having apache still work?

2018-10-01 Thread @lbutlr
On 30 Sep 2018, at 12:11, Jonathon Koyle wrote: > Simply to avoid assumptions, did you update php-fpm to 7 as well? php-fpm is built as part of the core php, it is not a separate package. # pkg info php56 php56-5.6.38 Name : php56 Version: 5.6.38 Installed on : Fri Sep 28

[users@httpd] Re: REMOTE_USER is not available at the time of external function call in httpd RewriteMap

2018-10-01 Thread Chudamani Padhan
Got one solution to set basic authorization header for REMOTE_USER using AuthBasicFake (as I was mainly looking for User, not password). AuthBasicFake %{REMOTE_USER} Thanks, Chudamani On Thu, Sep 20, 2018 at 5:11 PM Chudamani Padhan wrote: > Hi, > I am trying to set HTTP basic auth header

[users@httpd] System User Authentication mod_authnz_external

2018-10-01 Thread ramakanth varala
Hi All , I am trying for system user authentication for my web page. Below is the config i am using, LoadModule authn_core_module modules/mod_authn_core.so LoadModule unixd_module modules/mod_unixd.so LoadModule authz_core_module modules/mod_authz_core.so LoadModule authnz_external_module