[users@httpd] mod_cache + mod_rewrite: issue with caching rewritten urls

2013-04-18 Thread Eugene Teslenko
Hi, list! I've noticed a strange behavior of mod_cache when URL is rewritten. It caches pages, based on rewritten URL, but not original URL. This cause that the same data is stored for different URL's, rewritten to the same resulting URL (see the example below). Is there a way to change this behav

RE: [users@httpd] Rewrite Conditions & Rules

2011-03-03 Thread Eugene
TTPS when they click on a portion of the site that isn't HTTPS. The code all looks like it should work, but there's something strange going on with it. It looks like the second set of code isn't firing. -Original Message- From: Eugene [mailto:eugene.lyse...@gmail.c

RE: [users@httpd] Rewrite Conditions & Rules

2011-03-03 Thread Eugene
Doesn't it fit your needs? RewriteCond %{REQUEST_URI} !^/$ RewriteCond %{REQUEST_URI} !^/home RewriteCond %{REQUEST_URI} !^/insurance-tips RewriteCond %{REQUEST_URI} !^/add-a-tip RewriteCond %{HTTPS} off RewriteRule / https://www.websit

Re: [users@httpd] 64 Bit Apache httpd on Solaris

2011-02-07 Thread Eugene
I compile Httpd with SunStudio using options: CC=cc \ CFLAGS="-fast -xO4 -mt -xtarget=generic -m64 -DSSL_EXPERIMENTAL -DSSL_ENGINE" \ CXX=$CC \ CXXFLAGS="$CFLAFS" \ LDFLAGS="-xtarget=generic -m64 -L/usr/sfw/lib/64 -L/usr/lib/64 -R/usr/sfw/lib/64 -R/usr/lib/64" \ GREP=grep \ ./configure \ ## here i

Re: [us...@httpd] Apache 2.2.17 on RHEL 5.2 (13) Permission denied

2010-10-27 Thread Eugene
Hello, Allow access to your directory explicitly with "Allow from ..." Or disable the module mod_authn_default in configuration. -Original Message- From: sai prasad kolli Reply-to: "users@httpd.apache.org" To: users@httpd.apache.org Subject: [us...@httpd] Apache 2.2.17 on RHEL 5.2 (13)

[us...@httpd] timeouts are 4 times faster than expected [C1]

2010-03-14 Thread Eugene ADELL-EXT
Hi, I have tested the timeouts with the ajp proxy, and I am very surprised to see the results are not the expected ones. For this test, I proxify requests to an unreachable server then I am sure I don't receive any RST packet. Both configuration ProxyTimeout and ajp://.../ connectiontimeout hav

Re: [us...@httpd] how to set a connection timeout for the AJP ProxyPass ? [NC]

2010-03-09 Thread Eugene ADELL-EXT
.org To users@httpd.apache.org cc Subject Re: [us...@httpd] how to set a connection timeout for the AJP ProxyPass ? [C1] On Tue, Mar 9, 2010 at 5:28 AM, Eugene ADELL-EXT wrote: > > Hello > > I am trying to configure a connection timeout when using a ProxyPass with > AJP.

[us...@httpd] how to set a connection timeout for the AJP ProxyPass ? [C1]

2010-03-09 Thread Eugene ADELL-EXT
Hello I am trying to configure a connection timeout when using a ProxyPass with AJP. This one doesn't give the expected result (I get a 503 immediately instead of waiting for 60 seconds when the back-end is not available) : ProxyPass / ajp://localhost:8009/

Re: [EMAIL PROTECTED] Many logs or one?

2006-05-31 Thread Eugene
other program to split the logs. In the old days, if Apache open too many logs in a large virtual hosting setup, it may run out of file descriptors. Also, root-owned log files split to individual user-accessible directories could lead to security hol

Re: [EMAIL PROTECTED] Why doesn't Apache bind socket to vhost's IP addr.?

2006-03-01 Thread Eugene
mod_include, : mod_rewrite, ...) : which exclusively serves my private LAN. : Maybe even CPAN's HTTP::Server::Simple or the embedded Linux : Kernel HTTP server : would suffice? If you need to serve static content, there are other solutions that are faster and smaller than Apache (e.g. tux, thttp

Re: [EMAIL PROTECTED] Forbidden

2006-02-27 Thread Eugene
ss logs : 192.168.1.20 - - [27/Feb/2006:09:07:24 -0500] "GET /server-status HTTP/1.1" 403 398 Your machine, 192.168.1.20, does not resolve to anything in the BLUE.COM domain. If your setup is behind some NAT that assigns your machine a 192.168.*

Re: [EMAIL PROTECTED] recursive error in installing apache

2006-02-27 Thread Eugene
bsence of any other information; since install just : copies files, make sure you're installing as root so you have : write-permission in target dir. I'd go with 2.0.55 and see if that works. -- Eugene - The official User

Re: [EMAIL PROTECTED] Force/add/append/inject HTML to documents (similar to 'Header append') for no archive

2006-02-18 Thread Eugene
<http://tangent.org/index.pl?lastnode_id=478&node_id=362> : Or does someone know of an easy way to append : : to 100+ files? You actually don't want to append. That stuff needs to go in the section, whic

Re: [EMAIL PROTECTED] What's in the name of the user and group in httpd.conf?

2006-02-18 Thread Eugene
greatly appreciated. Check the online docs for more details. However, it sounds like you are unfamiliar with multiuser OSes such as Unix, Mac OS X (which is also a BSD-flavor Unix), and even Windoze Server. Do some research and build a better foundation to understand Apache and to as

Re: [EMAIL PROTECTED] high load average on Apache 1.3 hosting 8000 conc. users forum

2006-01-29 Thread Eugene
disks. What do you : mean by "disks maxed out" ? Does your machine hit swap? : Mainly VBulletin is a php script. I don't serve much static html files. : How can php be tuned to optimize its performance? Get a PHP enhancer, e.g. Turck mmCache. -- Eugene Lee eugene at fsck dot

Re: [EMAIL PROTECTED] how can I add SERVER_NAME to a filename

2006-01-03 Thread Eugene
variables exposed by mod_rewrite are not available in other Apache directives. -- Eugene - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info

Re: [EMAIL PROTECTED] .htaccess to prevent external access

2005-12-22 Thread Eugene
remove the Allow directive and restart Apache? -- Eugene - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: [EMAIL

[EMAIL PROTECTED] speed gains between Apache 2.0.x and 2.2.0

2005-12-06 Thread Eugene
Are there any benchmarks out there that compare the performance between Apache 2.0.x and the newly-released Apache 2.2.0? -- Eugene - The official User-To-User support forum of the Apache HTTP Server Project. See http

Re: [EMAIL PROTECTED] Configuration of .htaccess file

2005-09-26 Thread Eugene
/to/script.php To redirect while NOT sending the 404 status code to the client: ErrorDocument 404 http://www.yourserver.com/path/to/script.php -- Eugene eugene at fsck dot net - The official User-To-User support forum of the Apache HTT

Re: [EMAIL PROTECTED] Argus "Internal Server Error"

2005-09-26 Thread Eugene
tried the Windoze approach and installed Apache & Argus from scratch in another directory to run on another port? Note, I know nothing about Apache, and even less about Argus. -- Eugene eugene at fsck dot net - The official