Re: [EMAIL PROTECTED] Verifying .htaccess works

2005-08-15 Thread Aman Raheja
It has worked for me, following instructions on the link at http://www.techquotes.com/notes/ If a specific thing is not working, please explain, we'll be glad to help. Regards Aman David Blomstrom wrote: Related to my last question, I'd like to ask how I can verify that my .htaccess file is

[EMAIL PROTECTED] mod_rewrite / rewrite_map

2005-08-15 Thread Chris Knipe
Hi, Just a quickie I think Does apache require a restart / graceful when a rewrite_map is updated (the actual text file it reads from), and if not, how often is the file checked for updates?? Thanks, Chris - The

[EMAIL PROTECTED] Redirect Port 80 requests to Port 8080 on second server

2005-08-15 Thread Neil Freeman
Hi there, I have a RedHat linux box with two Apache server setups up and running (an Apache 1.x server and an Apache 2.x server). The Apache 1.x server is set up to listen on Port 80 and the Apache 2.x server set up to listen on port 8080. What I would like is to have the URL

[EMAIL PROTECTED] rewritemap help?

2005-08-15 Thread Chris Knipe
Afternoon, the.file: my.web.site my.internal.web.site apache conf: RewriteEngine On RewriteMap MyMap txt:the.file Now, what I'm not sure about If I add xyz.com and internal.xyz.com to the.file, I want apache to dynamically detect that xyz.com is in the file, and PROXY [P] the request

[EMAIL PROTECTED] Apache 1.3.x eats all avaible memory (doesn't close some connections)

2005-08-15 Thread Lech Karol Pawłaszek
Hello. I've encountered a weird problem and i don't know what to do. Few days ago I recieved another server to administrate. Machine had some problems with memory. After some tests - i thought it was kernel fault - load was about 160; processes kscand and kswapd had very high cpu usage.

Re: [EMAIL PROTECTED] ssl environment mod_rewrite

2005-08-15 Thread Joshua Slive
On 8/15/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: im was surprised to find that not all environment variables are available in mod_rewrite (is that correct ?) No. Arbitrary env variables are available using %{ENV:variable} See:

[EMAIL PROTECTED] Re: Redirect Port 80 requests to Port 8080 on second server

2005-08-15 Thread Joost de Heer
NameVirtualHost 192.168.1.158 VirtualHost 192.168.1.158 ServerName original-url.blinky ProxyPass / http://localhost:8080/ Don't forget the ProxyPassReverse [Second Apache] NameVirtualHost 192.168.1.158 VirtualHost 192.168.1.158 localhost != 192.168.1.158, so

Re: [EMAIL PROTECTED] apachectl startssl --need to start without entering password

2005-08-15 Thread Mark H. Wood
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Sun, 14 Aug 2005, James, Denise wrote: Please point me to where I can find documentation on starting apache with ssl and NOT having to enter the password. I am new to managing this web server and was recently asked to setup a new certificate

[EMAIL PROTECTED] 403 on symlinks

2005-08-15 Thread Christopher Malton
I have encountered a problem with Cricket/Apache. I set everything up in cricket and it works, but now, when I access the grapher.cgi file, I get a 403 forbidden and in the error log I get the following: {Date} {Time} [Error] [Client 192.168.2.2] Symbolic link not allowed:

Re: [EMAIL PROTECTED] Apache 1.3.33 segfault when enabling suEXEC _and_ php4_module 4.3.10

2005-08-15 Thread Joshua Slive
On 8/15/05, Sebastian Stark [EMAIL PROTECTED] wrote: I get a segfault when I enable both, suEXEC and the php4 module at the same time on debian sarge. This is probably an issue with somthing in the debian setup, since I haven't heard of anything similar with a standard apache install. To

Re: [EMAIL PROTECTED] How to fight a client causing DoS ?

2005-08-15 Thread Mark H. Wood
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Sat, 13 Aug 2005, Maxim Vexler wrote: Sean, thank you for the quick replay. Don't you think that a complete block on the client's IP is a too rush tactic? It's a legitimate user, his only fault was that he used this spidering tool, which had

Re: [EMAIL PROTECTED] rewritemap help?

2005-08-15 Thread Chris Knipe
On 8/15/05, Chris Knipe [EMAIL PROTECTED] wrote: Afternoon, the.file: my.web.site my.internal.web.site apache conf: RewriteEngine On RewriteMap MyMap txt:the.file Now, what I'm not sure about If I add xyz.com and internal.xyz.com to the.file, I want apache to dynamically detect that

Re: [EMAIL PROTECTED] Apache config file

2005-08-15 Thread William A. Rowe, Jr.
Dana Marshall wrote: I couldn't FIND the httpd.default.conf file, if it's THERE, I'd use it... but thanks for the link... now, for future reference, where WOULD I find this file??? Or put it, so that Apache sees it? for Apache 2.0 you can grab the absolute most current files from;

[EMAIL PROTECTED] SOLVED - Re: [EMAIL PROTECTED] Re: Redirect Port 80 requests to Port 8080 on second server

2005-08-15 Thread Neil Freeman
OK - have eventually got my setup to work thanks to a combination of suggestions from Chris, Joshua and Joost. FYI my final working configuration is shown below -- Server 1 (httpd.conf) --- Listen 80 Port 80 ServerName blinky NameVirtualHost

Re: [EMAIL PROTECTED] Why does Apache use up all my memory?

2005-08-15 Thread Joe Orton
On Mon, Aug 15, 2005 at 11:00:02AM -0400, George Adams wrote: Thanks, Joe and Jon for your helpful thoughts regarding my Apache memory problem. Here's some more information: Joe 1-015823W 0.001742573500GET /out/388.mp3 Joe 2-0 15824 W 0.00 1742573499 GET /out/238.mp3

Re: [EMAIL PROTECTED] rewritemap help?

2005-08-15 Thread Joshua Slive
On 8/15/05, Chris Knipe [EMAIL PROTECTED] wrote: RewriteEngine On RewriteMap MyMap txt:the.file RewriteCond %{HTTP_HOST} ^${MyMap:%{HTTP_HOST}}$ RewriteRule ^(.{MyMap:%{HTTP_HOST}})$ something here that is the value of the key$1 [P] Basically, anything to host 1, proxy to host 2.

Re: [EMAIL PROTECTED] Verifying .htaccess works

2005-08-15 Thread David Blomstrom
OK, it works. Thanks. --- Joshua Slive [EMAIL PROTECTED] wrote: On 8/14/05, David Blomstrom [EMAIL PROTECTED] wrote: Related to my last question, I'd like to ask how I can verify that my .htaccess file is functioning. It could be the source of my mod_rewrite problem, as I don't

[EMAIL PROTECTED] Why isn't mod_rewrite working?

2005-08-15 Thread David Blomstrom
Mod_rewrite actually seems less difficult than I at first imagined. However, I'm doing something wrong, as it isn't working yet. These are the steps I've followed: 1. Added this to my httpd conf file: Directory / Options FollowSymLinks AllowOverride All /Directory 2. Verified that my

RE: [EMAIL PROTECTED] mod_proxy/mod_proxy_html

2005-08-15 Thread Shahzad Bhatti
I can see from the live header, that the single sign on server is setting cookie, i.e., http://extranet.hendrickson-intl.com/cas/login?service=http%3A%2F%2Fwd-prtlsrv1%3A8080%2Fwcs%2Fj_security_check HTTP/1.1 Set-Cookie: CASTGC=TGC-1-1N7IaTahULnxb6P8E46x2iG5BoG5PDcwQg8AaLyCEFPL6VgwzV; Path=/cas;

Re: [EMAIL PROTECTED] Why isn't mod_rewrite working?

2005-08-15 Thread David Blomstrom
I just discovered that mod_rewrite IS working. When I click on my links, I get dynamic URL's. But if I type http://geozoo/stacks/Animalia directly into the browser, it works just fine. So I guess the next step is fixing it so that SEO friendly links are produced when I click on a link. Is this

[EMAIL PROTECTED] Publishing .htaccess Online

2005-08-15 Thread David Blomstrom
I read something about publishing .htaccess files online that suggested they require special attention. As I recall, it said you can't publish them as BINARY files. If so, does that mean I can't publish it online with Dreamweaver? Would I be able to use CuteFTP and simply drag and drop it into the

Re: [EMAIL PROTECTED] Publishing .htaccess Online

2005-08-15 Thread Craig Dunigan
It sounds like you're using publish to mean upload, in which case there's nothing special about .htaccess files. It's just a simple ASCII text file. Perhaps you were thinking of special attention to insure they can't be served by Apache? The default config file prevents that. If not,

Re: [EMAIL PROTECTED] Publishing .htaccess Online

2005-08-15 Thread Craig Dunigan
Unless you were worried about the ASCII line ending translation? I think Apache won't like it if you leave Windows line endings in there. Use ASCII as the transfer type, but most FTP clients will handle that correctly for you. I can't say anything specific about Dreamweaver's FTP client. --

[EMAIL PROTECTED] PROBLEM RESOLVED: [EMAIL PROTECTED] apachectl startssl --need to start without entering password

2005-08-15 Thread James, Denise
Thanks for everyone's assistance! How can I get rid of the pass-phrase dialog at Apache startup time? The reason why this dialog pops up at startup and every re-start is that the RSA private key inside your server.key file is stored in encrypted format for security reasons. The pass-phrase is

Re: [EMAIL PROTECTED] Multiple apache instances

2005-08-15 Thread Craig Dunigan
Each instance should already have its own control script, apachectl, in the bin directory, with paths specific to that instance. -- Craig Dunigan IS Technical Services Specialist Middleware - EIS - DoIT University of Wisconsin, Madison opinions expressed are my own, not the University's On

[EMAIL PROTECTED] Connecting from proxy to backendserver gives proxy: CONNECT: declining URL problem

2005-08-15 Thread Sive Lindmark
Hi! Trying to set up a front end mod_proxy server and a backend mod_perl server for the first time, but get a proxy: CONNECT: declining URL http://localhost:8080/dees/ problem. I guess there is something wrong with my setup but can't figure out what. Glad for some help! Greetings Sive

[EMAIL PROTECTED] RE: Mod_proxy https question

2005-08-15 Thread Mario François Jauvin
Joost, Your comment provided me with a solution. What I was doing was as follow. I would deny all access, then I would allow specific sites using config directives like: Proxy http://*.microsoft.com This would have the effect of only allowing HTTP protocol with sites in the *.microsoft.com

[EMAIL PROTECTED] can't compile 2.0.54 with openssl 0.9.8

2005-08-15 Thread Joseph Shraibman
I configured like this: ./configure --with-ssl=/usr/local/ssl --enable-ssl=static --enable-info=shared --enable-include=shared --enable-vhost-alias=shared but my build fails with this: aking all in ssl make[2]: Entering directory `/local/download/apache/httpd-2.0.54/modules/ssl' make[3]:

[EMAIL PROTECTED] one source port

2005-08-15 Thread Arsalan Lodhi
Hello - question is how do i find source port sending data to some destination port - and does the communication on https is on 443/9443 on both ends (source and destination) - i thought 443 is destination port for secure http communication --- Thanks,

Re: [EMAIL PROTECTED] can't compile 2.0.54 with openssl 0.9.8

2005-08-15 Thread Peter Huesser
Joseph Shraibman wrote: I configured like this: ./configure --with-ssl=/usr/local/ssl --enable-ssl=static --enable-info=shared --enable-include=shared --enable-vhost-alias=shared but my build fails with this: ssl_engine_pphrase.c: In function `ssl_pphrase_Handle_CB':