Re: [users@httpd] Assistance with file + ldap auth config moving from httpd 2.2 to 2.4

2017-10-13 Thread Galen Johnson
Eduardo, It looks like you're trying to get it working with Xymon so you might want to ask on that list as well. I had a heck of a time getting it to work but I ended up using mod_authnz_external.c to configure it to use PAM. This is the config I use: # Require SSL connection for p

Re: [users@httpd] Assistance with file + ldap auth config moving from httpd 2.2 to 2.4

2017-10-13 Thread Eric Covener
Can you crank up the loglevel to trace8? I believe there are some spurious error messages when authz modules are reporting their individual results vs. getting rolled up to RequireAny. On Fri, Oct 13, 2017 at 11:46 AM, Eduardo Mayoral wrote: > Hi, Eric, > > Thanks for your fast answer. The re

Re: [users@httpd] Assistance with file + ldap auth config moving from httpd 2.2 to 2.4

2017-10-13 Thread Eduardo Mayoral
Hi, Eric,     Thanks for your fast answer. The reason for the provider aliases is that once I get this config working I would like to re-use it for about 6 different directories.     However, I have tried to flatten the configuration according to your suggestion. I repeated the tests, exact same

Re: [users@httpd] Assistance with file + ldap auth config moving from httpd 2.2 to 2.4

2017-10-13 Thread Eric Covener
On Fri, Oct 13, 2017 at 10:06 AM, Eduardo Mayoral wrote: > Hi, > > I am trying to move a web application from httpd 2.2 to httpd 2.4 , I don't think all of those provider-aliases are necessary. Did you a try a more simpler/direct port of the config? --

[users@httpd] Assistance with file + ldap auth config moving from httpd 2.2 to 2.4

2017-10-13 Thread Eduardo Mayoral
Hi,     I am trying to move a web application from httpd 2.2 to httpd 2.4 , and I need some assistance with a particular configuration     The Authorization / Authentication schema in httpd 2.2 is as follows (this goes inside a tag ):     AuthUserFile /etc/hobbit/hobbitpasswd     AuthGroupFile

Re: [users@httpd] Where does ap_rprintf actually print out?

2017-10-13 Thread Daniel Gruno
On 10/13/2017 12:10 PM, eeadev dev wrote: > thanks, in the console browser? your web browser, curl or whatever you use to communicate with httpd. It prints in the _response body of the request_. If you do ap_rprintf(r, "Hello, wordl!") then you will see "Hello, world!" in your browser (chrome, fi

Re: [users@httpd] Where does ap_rprintf actually print out?

2017-10-13 Thread eeadev dev
thanks, in the console browser? 2017-10-13 3:03 GMT-07:00 Daniel Gruno : > On 10/13/2017 11:53 AM, eeadev dev wrote: > > Writing an apache C module I tried this function: > > > > https://ci.apache.org/projects/httpd/trunk/doxygen/ > group__APACHE__CORE__PROTO.html#ga5e91eb6ca777c9a427b2e82bf1eeb8

Re: [users@httpd] Where does ap_rprintf actually print out?

2017-10-13 Thread Daniel Gruno
On 10/13/2017 11:53 AM, eeadev dev wrote: > Writing an apache C module I tried this function: > > https://ci.apache.org/projects/httpd/trunk/doxygen/group__APACHE__CORE__PROTO.html#ga5e91eb6ca777c9a427b2e82bf1eeb81d > > but I dont know where it does print out. Does it in any specific file? > > I

[users@httpd] Where does ap_rprintf actually print out?

2017-10-13 Thread eeadev dev
Writing an apache C module I tried this function: https://ci.apache.org/projects/httpd/trunk/doxygen/group__APACHE__CORE__PROTO.html#ga5e91eb6ca777c9a427b2e82bf1eeb81d but I dont know where it does print out. Does it in any specific file? I called it this way: ap_rprintf(r, "print out!"); and