[users@httpd] Full cache locking requested

2017-10-18 Thread Dirk Griffioen
Hi, In the Apache docs here: https://httpd.apache.org/docs/2.4/mod/mod_cache.html#thunderingherd it says: 'When a cached entry becomes stale' It seems that this does not include the first call: the first uncached fragment is not protected by the cache lock, so all requests for the first frag

[users@httpd] SSL hooks

2017-10-18 Thread Adi Mallikarjuna Reddy V
Hi I am looking at this file https://github.com/apache/httpd/blob/trunk/modules/ssl/mod_ssl_openssl.h and see that there are 3 hooks defined for handling SSL connections. Are these available for modules/handlers to use? Can my module register to thees hooks and manipulate SSL context? Thanks Ad

[users@httpd] Apache load module path

2017-10-18 Thread renee ko
Team, I have LoadModules configured under the default RedHat httpd directory. Example: LoadModule proxy_module /usr/lib64/httpd/modules/mod_proxy. I would like the modules to be changed to another directory(/usr/local/apache2/modules). Should I just update the new modules path in the httpd.conf

Re: [users@httpd] how to include ssl lib when running apxs

2017-10-18 Thread eeadev dev
thanks Daniel but it does not change anything. Is there any other solution? 2017-10-17 10:32 GMT-07:00 Daniel : > Try loading envvars if its there or adding the openssl/lib to > LD_LIBRARY_PATH > > Like: > > export LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:/PATH/TO/OPENSSL/LIB" > > 2017-10-17 19:04 GMT

Re: [users@httpd] URI query string in a post method

2017-10-18 Thread Daniel
The best idea is to try to guess why exactly it is getting a 400, and which version of httpd it is. In recent version (2.4.25) http parsing has become more strict due to CVE-2016-8743. There is a directive since then too to allow a more relaxed check of grammar (HttpProtocolOptions), but still, my