Re: [users@httpd] Command line method to get virtual hosts and DocumentRoot?

2016-01-28 Thread Yehuda Katz
The best way I know of to do this is with mod_info and then you have two options: 1. Run "httpd -DDUMP_CONFIG" and parsing the output. This has the downside of not merging or overriding repeated directives. 2. curl (or similar) http://localhost/server-info and parse that output. - Y On Thu, Jan

[users@httpd] New server admin needing help setting up my Apache server to work with Chrome.

2016-01-28 Thread Spork Schivago
Hello, I'm sorry if this has been asked before. I've searched a good bit through the Archives on Apache's site and I've spent the last couple days trying to find an answer on the web for my question. I have a Virtual Private Server that I'm renting through GoDaddy. It's running CentOS 6.7 in

Re: [users@httpd] Apache logging format

2016-01-28 Thread Richard
> Date: Thursday, January 28, 2016 09:38:47 -0800 > From: K R > > Is there a way to capture user login user login failure in > Apache logs. > > TIA What are you using for your authentication method/access control - http-basic, application-specific, something else?

Re: [users@httpd] Command line method to get virtual hosts and DocumentRoot?

2016-01-28 Thread Rose, John B
Thanks Yehuda and Pete On 1/28/16 1:31 PM, "Pete Houston" wrote: >On Thu, Jan 28, 2016 at 05:03:41PM +, Rose, John B wrote: >> Is there a command line method to list all the virtual hosts and each >>DocumentRoot? > >Should be pretty simple to construct with

Re: [users@httpd] Apache logging format

2016-01-28 Thread K R
we are using SAML . On Thu, Jan 28, 2016 at 11:52 AM, Richard < lists-apa...@listmail.innovate.net> wrote: > > > > Date: Thursday, January 28, 2016 09:38:47 -0800 > > From: K R > > > > Is there a way to capture user login user login failure in > > Apache logs. > > > > TIA

Re: [users@httpd] Apache support for Brotli?

2016-01-28 Thread Jim Jagielski
It is on my TODO list... once I put the finishing touches on the reverse proxy health-check module, that's the next one I plan to attacking. > On Jan 27, 2016, at 4:32 PM, @lbutlr wrote: > >

[users@httpd] Apache logging format

2016-01-28 Thread K R
Is there a way to capture user login user login failure in Apache logs. TIA

Re: [users@httpd] Command line method to get virtual hosts and DocumentRoot?

2016-01-28 Thread Pete Houston
On Thu, Jan 28, 2016 at 05:03:41PM +, Rose, John B wrote: > Is there a command line method to list all the virtual hosts and each > DocumentRoot? Should be pretty simple to construct with Apache::ConfigParser. https://metacpan.org/pod/Apache::ConfigParser Pete -- Openstrike - improving

[users@httpd] Command line method to get virtual hosts and DocumentRoot?

2016-01-28 Thread Rose, John B
Is there a command line method to list all the virtual hosts and each DocumentRoot? Httpd -S Just gives the name and the .conf file. Thanks