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

2017-10-17 Thread Danny Mallory
Hello All, I have an application where the client is sending a post method / form to an apache reverse proxy and the request contains a uri query string. Apache is throwing a 400 bad request on this. is there a way to tell apache to ignore a malformed post method? I understand you cannot rewrite

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

2017-10-17 Thread 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+02:00 eeadev dev : > I am compiling my apache c module using this > > sudo apxs -i -a -c mod_ex.c > > now I need to use the li

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

2017-10-17 Thread eeadev dev
I am compiling my apache c module using this sudo apxs -i -a -c mod_ex.c now I need to use the lib openssl what should I use to include this lib, I tried with adding this option: -I /usr/include/openssl but it still seems that it does find some function. Please how shall I do to include it?