RE: [users@httpd] Apache mod_autoindex and mod_deflate (gzip). Can't get pages compressed

2020-07-23 Thread Artem
Hi all! Is my email went to mail list successfully? I am just not sure. Thanks! -- Regards, Art -Original Message- From: Artem [mailto:e...@mail.ru.INVALID] Sent: 18 July 2020 13:59 PM To: users@httpd.apache.org Subject: [users@httpd] Apache mod_autoindex and mod_deflate (gzip). Can't

[users@httpd] Apache mod_autoindex and mod_deflate (gzip). Can't get pages compressed

2020-07-18 Thread Artem
Hi folks! I come across with issue I can't fix. I have Apache/2.4.43 OpenSSL/1.1.1g with mod_autoindex (showing directory listings instead of index.html) and with mod_deflate. I was able to get content gzipped, but only if they are files with extensions (e.g. .css, .html, etc.) But when I want

Re: [users@httpd] Problems closing connections in a SUSPENDED test case

2014-03-31 Thread Artem Grinblat
Thanks a lot! I've made a hack which puts the suspeded connection back in the queue: https://gist.github.com/ArtemGr/9887564 with that the test case works! (`ab` no longer timeouts). Would it make sense to submit a feature request along these lines? Should I make a patch or leave it to the more

[users@httpd] Problems closing connections in a SUSPENDED test case

2014-03-30 Thread Artem Grinblat
I've come up with an (almost) working SUSPENDED test case: https://gist.github.com/ArtemGr/9870554 It works in browser and with curl -v http://127.0.0.1/sustest;, at least for some time. Apache version is 2.4.7 (Debian Jessie). Problem is, when I test it with ab (ab -n 999 -c 9

[users@httpd] Resuming a SUSPENDED connection?

2013-12-14 Thread Artem
I have a module which returns SUSPENDED from its handler in order to do stuff in the background before replying to the HTTP client. Can I resume the SUSPENDED connection after the reply has been generated in order to reuse the connection (e.g. keep-alive) for future HTTP requests?

[EMAIL PROTECTED] Sending too much to stderr kills apache 2.2.9 on windows

2008-10-07 Thread Artem Kuchin
? -- Artem - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more info. To unsubscribe, e-mail: [EMAIL PROTECTED] from the digest: [EMAIL PROTECTED

[EMAIL PROTECTED] Writing too much to stderr kill apache 2.2.9 on windows

2008-09-30 Thread Artem Kuchin
and only after cgi script finished. I guess too many warn statements fill up that stderr buffer and after that script waits for the buffer to become free and apache does not free it. This seems to be a terrible feature for debugging process. Any comments? -- Artem

[EMAIL PROTECTED] Weird Ip in access log, need help to understand

2008-06-19 Thread Artem Kuchin
is 74.6.29.159, 74.6.8.118 ? Some records how even three IP addesses! Some have the word unknown then comma ip address. i have HostnameLookups Off in the config file. What is this? How is it possible? What does it mean? -- Artem

Re: [EMAIL PROTECTED] Weird Ip in access log, need help to understand

2008-06-19 Thread Artem Kuchin
André Warnier пишет: Artem Kuchin wrote: I recently upgraded to 2.2 and now i see thing which i have never seen mefore in the access log: 74.6.29.159, 74.6.8.118 - - [11/Jun/2008:06:28:55 +0400] GET /Go/ViewProduct/id=883 HTTP/1.1 200 7195 - Mozilla/5.0 (compatible; Yahoo! Slurp; http

[EMAIL PROTECTED] Weird Ip in access log

2008-06-16 Thread Artem Kuchin
) What is 74.6.29.159, 74.6.8.118 ? Some records how even three IP addesses! SOme have the word unknown then comma ip address. What is this? How is it possible? What does it mean? -- Artem - The official User-To-User support

[EMAIL PROTECTED] Access control to files for logged in users only using apache

2008-06-04 Thread Artem Kuchin
. Access to all other files gives forbidden. Any idea? -- Regards, Artem - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more info. To unsubscribe

Re: [EMAIL PROTECTED] Access control to files for logged in users only using apache

2008-06-04 Thread Artem Kuchin
André Warnier пишет: Artem Kuchin wrote: Hello! Where is the situation. I have a bunch of files (thousands) in a directory structure which is accessible via direct url. For example: directory: htdata/index.html htdata/files htdata/files/1/file1.dat htdata/files/1/file2.dat htdata/files

[EMAIL PROTECTED] Starting apache with overquota conditions

2008-02-14 Thread Artem Kuchin
own configuration with its own user and group). Is there anyway to NOT start apache if it cannot create pid file? -- Regards, Artem - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http

[EMAIL PROTECTED] How to resist user click abuse in apache?

2007-12-13 Thread Artem Kuchin
are stored). -- Artem - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more info. To unsubscribe, e-mail: [EMAIL PROTECTED] from the digest

[EMAIL PROTECTED] Regarding mod_cgid logging problem

2007-10-18 Thread Artem Kuchin
config accessible for mod_cgid for this? Thank you all -- Regards, Artem - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more info. To unsubscribe, e

Re: [EMAIL PROTECTED] logging into stderr using mod_cgid

2007-10-15 Thread Artem Kuchin
the same when using Catalyst framework with mod_perl. Catalyst's debug messages go to the virtualhost log file, but the errors go to the main server's log file. Octavian So, any idea how to fix it? Is it even fixable? -- Regards, Artem

Re: [EMAIL PROTECTED] logging into stderr using mod_cgid

2007-10-15 Thread Artem Kuchin
Artem Kuchin wrote: I have submitted a bug report about this 1-2 years ago and decided to check this issue today in otder to switch to worker mpm. The problem is that when using cgid and print to stderr, say, like this fprintf(stderr,Hello error log!); the messages goes into main server log

Re: [EMAIL PROTECTED] logging into stderr using mod_cgid

2007-10-15 Thread Artem Kuchin
William A. Rowe, Jr. wrote: Artem Kuchin wrote: Who do i contact to get this issue solved? I did not see any contact email in the source and i am too lame to understand cgid sources. The project is aware of this deficiency in the cgid daemon. Well, i guess so, because first bug report

[EMAIL PROTECTED] logging into stderr using mod_cgid

2007-10-14 Thread Artem Kuchin
, not into virtual server log. When using just mod_cgi the messages goes, as it should, into virtual host error log. The problem is that if server runs tons of virtual hosts (each is a separate client) none of virtual hosts users can debug their cgi programs. Any idea on this issue? -- Regards, Artem

[EMAIL PROTECTED] Blocking big POST requests

2007-09-06 Thread Artem Kuchin
about 500MB of traffic. As i understand, if i forbid using POST on / then apache will still receive the whole request and only them will give out the forbidden message, so the traffic will still be there. Anyway to block it before POST data is receieved? -- Regards Artem

[EMAIL PROTECTED] Configuring handler for exact location

2007-03-29 Thread Artem Kuchin
to be handled by the script, but not the other dirs (images,admin,jscript,...). Maybe there is a way to set global handles but list uri exeptions? I am using Apache 2.1 under freebsd, if it matters. -- Artem - The official User

Re: [EMAIL PROTECTED] Configuring handler for exact location

2007-03-29 Thread Artem Kuchin
Joshua Slive wrote: On 3/29/07, Artem Kuchin [EMAIL PROTECTED] wrote: Hello! I need to configure a handler which will process ONLY / url. for example http://www.domain.dom/ is handled by handler as well as http://www.domain.dom but http://www.domain.dom/images or http://www.domain.dom/admin

Re: [EMAIL PROTECTED] migrating from apache 1.3 to 2.0 advice

2006-04-07 Thread Artem Kuchin
log file. They go to the main server log instead of going to virtual host log file. The problem is in mod_cgid and someone said it is architectural problem which currenctly cannot be fixed. So, i went back to prefork. Artem

[EMAIL PROTECTED] STDERR put in the wrong log with cgid threaded apache

2006-01-25 Thread Artem Kuchin
with thread error logs go to the right virtual host log. Regards, Artem - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more info. To unsubscribe

[EMAIL PROTECTED] CGi warnings and error go into wrong error log

2006-01-24 Thread Artem Kuchin
, Artem - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more info. To unsubscribe, e-mail: [EMAIL PROTECTED] from the digest: [EMAIL PROTECTED

[users@httpd] Apache2 hangs w/o responding on FBSD 5.4

2005-06-27 Thread Artem Kuchin
. Just plain html+ssi. Sometimes very simple PHP. Some have a lot of php and mysql connection. We had this problem on FreeBSD 5.2,5.3 and now we have on 5.4 with the latest Apache. Our clients are pissed off ;( Maybe someone has any idea what's going on and how to solve the problem? Regards, Artem

Re: [users@httpd] Apache2 hangs w/o responding on FBSD 5.4

2005-06-27 Thread Artem Kuchin
Joshua Slive [EMAIL PROTECTED] wrote: On 6/27/05, Artem Kuchin [EMAIL PROTECTED] wrote: Hi! I have a very bad problem. We are running about 20 jails on freebsd. Each has one apache (2.0.54) and one jails has about 80 httpds each running from its own user (non root startup). Php5 module