Re: [users@httpd] Use of ProxyPassReverse

2019-02-06 Thread Daniel Ferradal
Awesome explanation Matt! El mar., 29 ene. 2019 a las 19:36, Muggeridge, Matt () escribió: > > ProxyPassReverse is used for rewriting response headers related only to > redirection. As per the docs, it affects only “Location”, > “Content-Location” and “URI” headers on HTTP redirect responses.

Re: [users@httpd] Stupid question time - VirtualHost

2019-02-06 Thread Daniel Ferradal
Maybe related to using a name instead of an ip address with Listen directive. IMO using names with Listen directive is a terrible idea, documentation of Listen directive specifies you should use ip address too. Is that name correctly resolving to the specific ip address in the system? El mar., 5 f

Re: [users@httpd] Re: Logging issues with custom Apache2 module

2019-02-06 Thread Tom Noonan
This was the bit I was missing! Thanks! --Tom Noonan II On Wed, Feb 6, 2019 at 3:45 PM Eric Covener wrote: > On Wed, Feb 6, 2019 at 3:38 PM Tom Noonan wrote: > > > > Good afternoon: > > > > I've written a custom Apache2 module and I'm having some difficulty with > logging. Logging is workin

Re: [users@httpd] 403 Forbidden Error on Apache 2.4

2019-02-06 Thread Daniel Ferradal
Directory / is the root of the filesystem, so it should always be set in server config with Require all denied, it is not the documentroot, chances are you have a Directory directive elsewhere denying, also make 100% sure you don't mix Order/Allow/Deny with 2.4 directives. So: Server config Requ

Re: [users@httpd] Re: Logging issues with custom Apache2 module

2019-02-06 Thread Eric Covener
On Wed, Feb 6, 2019 at 3:38 PM Tom Noonan wrote: > > Good afternoon: > > I've written a custom Apache2 module and I'm having some difficulty with > logging. Logging is working as expected using the global log level. For > example, if I set the following I get debug logs from my module: > > Log

[users@httpd] Re: Logging issues with custom Apache2 module

2019-02-06 Thread Tom Noonan
Good afternoon: I've written a custom Apache2 module and I'm having some difficulty with logging. Logging is working as expected using the global log level. For example, if I set the following I get debug logs from my module: LogLevel Debug However, if I attempt to set the loglevel for only my

Re: [users@httpd] How to fix HTTP 100-continue from client HTTP 417 error in Apache 2.4.10?

2019-02-06 Thread Amey Abhyankar
Hello Dan, On Wed, 6 Feb 2019 at 13:05, Dan Ehrlich wrote: > > Looks like you just need to enable mod_headers > (http://httpd.apache.org/docs/current/mod/mod_headers.html) and then add the > below text that they mention in the Stack Over question? > > You might need to run “a2enmod headers” fro