Suexec permissions question

2016-02-26 Thread monttyle
This is not a question on how to use suexec, that's fairly clear. The strict, hardwired conditions its willing to suexec under are also spelled out pretty clear. My question is the nature of these requirements -- why they're the way they are. The user and group requirements specifically.

Re: where to put update_mime_types.pl?

2016-02-26 Thread Rich Bowen
On Feb 26, 2016 04:45, "Ruediger Pluem" wrote: > > > > On 02/26/2016 01:46 AM, Roy T. Fielding wrote: > > I have a perl script (see below) for updating the mime.types file with the latest > > registered IANA media types. I would like to add it to our version control, > > but I

Re: apache-swat project - need feedback!

2016-02-26 Thread Alexey Melezhik
Please also consider these 2 variables as tests time tuning , in cases of dead locks or hanging requests they also could be helpful - curl_connect_timeout - maximum time in seconds that you allow the connection to the server to take, follow curl documentation for full explanation.

Re: apache-swat project - need feedback!

2016-02-26 Thread Alexey Melezhik
Hi , not sure if I completely understand the question, but if you ask about mapping http requess into swat language, then this is my answer : In terms of swat request is just a directories and file paths so GET /58854/denied/ would be a directory 58854/denied/ with a file get.txt in it. $

Re: apache-swat project - need feedback!

2016-02-26 Thread Alexey Melezhik
Hi Eric! Have you made these three steps ? 1. Make sure that http.conf.templ has all your changes ( concerning MPM modules loading ) 2. # generate httpd.conf ./configure.bash /path/to/apache/server/root 3. # run apache with new http do.conf sudo /path/to/apache/install/prefix/bin/apachectl -f

Re: apache-swat project - need feedback!

2016-02-26 Thread Alexey Melezhik
Hi ! Please try to set try_num variable , which defines number of attempts in case of unsuccessful return , swat makes exponential delays on every retry , so to get things fast you probably need try_num=1, please follow https://github.com/melezhik/swat#curl-parameters for details, also please

state of h2 (long)

2016-02-26 Thread Stefan Eissing
Things winding down here a bit before the weekend (at least I try) and I thought I'd summarize a bit the state of HTTP/2 in our little project, because...well, some might be interested and certainly no one has the time to follow all my crazy submits. * trunk <-> 2.4.x the version in 2.4.x

Re: apache-swat project - need feedback!

2016-02-26 Thread Eric Covener
On Fri, Feb 26, 2016 at 11:23 AM, Eric Covener wrote: > On Thu, Feb 4, 2016 at 6:07 AM, Alexey Melezhik wrote: >> * what things could be improved > > I notice that failed (bad status code for example) tests hang for a > many seconds which makes iterating

Re: apache-swat project - need feedback!

2016-02-26 Thread Eric Covener
On Thu, Feb 4, 2016 at 6:07 AM, Alexey Melezhik wrote: > * what things could be improved I notice that failed (bad status code for example) tests hang for a many seconds which makes iterating over stuff a little slow. -- Eric Covener cove...@gmail.com

Re: apache-swat project - need feedback!

2016-02-26 Thread Jim Jagielski
Any hints would be appreciated... I'd also like to dig deeper into using it. > On Feb 26, 2016, at 10:54 AM, Eric Covener wrote: > > Whoops, I realized this is not true -- it's got some modules, but it > didn't have MY modules -- notably my MPM. > > On Fri, Feb 26, 2016 at

Re: httpd + systemd

2016-02-26 Thread Reindl Harald
Am 26.02.2016 um 17:11 schrieb Tim Bannister: On 26 February 2016, Reindl Harald wrote: in case of a SIGTERM the daemon is supposed to do a clean shutdown anyways [Service] Type=simple EnvironmentFile=-/etc/sysconfig/httpd ExecStart=/usr/sbin/httpd $OPTIONS -D FOREGROUND

Re: httpd + systemd

2016-02-26 Thread Tim Bannister
On 26 February 2016, Reindl Harald wrote: > > > >in case of a SIGTERM the daemon is supposed to do a clean shutdown >anyways > >[Service] >Type=simple >EnvironmentFile=-/etc/sysconfig/httpd >ExecStart=/usr/sbin/httpd $OPTIONS -D FOREGROUND >ExecReload=/usr/sbin/httpd $OPTIONS -k graceful

Re: apache-swat project - need feedback!

2016-02-26 Thread Eric Covener
Whoops, I realized this is not true -- it's got some modules, but it didn't have MY modules -- notably my MPM. On Fri, Feb 26, 2016 at 10:52 AM, Eric Covener wrote: > I tried to take this for a spin, because I had a bad fix (1 step > forward, 10 steps back!) fix for an issue

Re: apache-swat project - need feedback!

2016-02-26 Thread Eric Covener
I tried to take this for a spin, because I had a bad fix (1 step forward, 10 steps back!) fix for an issue you later wrote a test for. But the httpd.conf template doesn't load any modules, so my (typical) DSO config didn't work at all. Did I do something wrong? Our Apache::Test harness copies

Re: BufferedLogs and docs

2016-02-26 Thread Reindl Harald
Am 26.02.2016 um 15:01 schrieb Reindl Harald: http://httpd.apache.org/docs/2.4/mod/mod_log_config.html#bufferedlogs Context: server config is that a documentation error or a error in the module that "BufferedLogs Off" inside a vhost is accepted the config below at least gives no error and

BufferedLogs and docs

2016-02-26 Thread Reindl Harald
http://httpd.apache.org/docs/2.4/mod/mod_log_config.html#bufferedlogs Context: server config is that a documentation error or a error in the module that "BufferedLogs Off" inside a vhost is accepted the config below at least gives no error and it's unclear if it disables the BufferedLogs

Re: httpd + systemd

2016-02-26 Thread Reindl Harald
Am 26.02.2016 um 10:57 schrieb Graham Leggett: Hi all, I am trying to come up with a vanilla systemd unit file so that our RPM packaging contains a sensible startup on systemd environments, but I’m struggling. With the unit file below the “systemctl restart httpd” command hangs. Usually

httpd + systemd

2016-02-26 Thread Graham Leggett
Hi all, I am trying to come up with a vanilla systemd unit file so that our RPM packaging contains a sensible startup on systemd environments, but I’m struggling. With the unit file below the “systemctl restart httpd” command hangs. Usually the server starts fine, but then the server is

Re: where to put update_mime_types.pl?

2016-02-26 Thread Stefan Eissing
+1 > Am 26.02.2016 um 10:45 schrieb Ruediger Pluem : > > > > On 02/26/2016 01:46 AM, Roy T. Fielding wrote: >> I have a perl script (see below) for updating the mime.types file with the >> latest >> registered IANA media types. I would like to add it to our version

Re: where to put update_mime_types.pl?

2016-02-26 Thread Ruediger Pluem
On 02/26/2016 01:46 AM, Roy T. Fielding wrote: > I have a perl script (see below) for updating the mime.types file with the > latest > registered IANA media types. I would like to add it to our version control, > but I am unsure whether to place it in > > httpd/trunk/support/ > > or in >