Re: [EMAIL PROTECTED] lower cpu priority to perl scripts

2008-08-28 Thread Richard de Vries
I found the following on google; you should be able to taylor it to your needs: http://techtasks.com/code/viewbookcode/567 # This code sets the priority of a process # --- # Adapted from VBScript code contained in the book: # "Window

Re: [EMAIL PROTECTED] lower cpu priority to perl scripts

2008-08-27 Thread Richard de Vries
If you are running on unix, the easiest way to probably do this is by calling the "setpriority" from within your perl script like this: setpriority(WHICH,WHO,PRIORITY); To set your current running perlscript to the lowest priority, you would call setpriority(0, $$, 20); $$ is your script's proces

Re: [EMAIL PROTECTED] Apache 2.2.8 + ProxyErrorOverride errors

2008-08-20 Thread Richard de Vries
ooking thru the code but have not yet been able to find it. :(    Richard - Original Message From: Nick Kew <[EMAIL PROTECTED]> To: users@httpd.apache.org Sent: Tuesday, August 19, 2008 7:34:47 PM Subject: Re: [EMAIL PROTECTED] Apache 2.2.8 + ProxyErrorOverride errors Richard de

[EMAIL PROTECTED] Apache 2.2.8 + ProxyErrorOverride errors

2008-08-19 Thread Richard de Vries
Hello everyone; it's been a while since I wrote to this list since everything has been smooth sailing so far ... but I did stumble on an issue just now that requires ya'lls expertise. I don't want to go into too much detail on "why" we're trying to do what we're doing, but basically I configured

Re: [EMAIL PROTECTED] HTTPD won't start. Fails with error message.

2008-02-15 Thread Richard de Vries
[EMAIL PROTECTED] HTTPD won't start. Fails with error message. Connect to address 127.0.0.1 Connection refused. "Lose not thy airspeed lest the ground rises up and smites thee." - Anon. Richard de Vries wrote: > It appears something else is already listening on port 80 and as such Apa

Re: [EMAIL PROTECTED] HTTPD won't start. Fails with error message.

2008-02-15 Thread Richard de Vries
It appears something else is already listening on port 80 and as such Apache is unable to bind to that port. What happens when you do a "telnet localhost 80". Do you get connected? - Original Message From: Mike - W0TMW <[EMAIL PROTECTED]> To: users@httpd.apache.org Sent: Friday, Februar

Re: [EMAIL PROTECTED] Installing Apache + SSL on Windows

2007-02-16 Thread Richard de Vries
What method did you use to remove the password from the private key you generated? --- Brian Gordon <[EMAIL PROTECTED]> wrote: > I've been trying for ages to get my server running > SSL successfully. I > don't need port 80 (unencrypted traffic) at all, > just 411. > > I have the module set up j

Re: [EMAIL PROTECTED] Re: apache/linux newbie has Test Page that won't die

2007-02-08 Thread Richard de Vries
Put a file called "index.html" in your docroot ... that's what resolved it for me. --- Urijah Kaplan <[EMAIL PROTECTED]> wrote: > I pressed refresh about a million times, and used > two different > browsers. Try it yourself-- 208.109dot216.147 Thank > you for trying > though. > > > On 2/8/07,

Re: [EMAIL PROTECTED] httpd unresponsive

2007-02-01 Thread Richard de Vries
What compiler are you using? I had a hell of a time trying to get Apache compiled for windows with Visual Studio Express -- I was experiencing all kinds of weird behavior. I finally abandoned the Express edition and tried it with the regular Visual Studio, which resolved all my problems. --- Kev

Re: [EMAIL PROTECTED] Help needed with basic auth

2007-02-01 Thread Richard de Vries
Did you make sure your scan included all .htaccess files. Depending on the syntax you ran to "scan" your Apache directory, it may not have scanned your .htaccess files. I am thinking one of these files may contain a reference to that file. --- Nathan Kellogg <[EMAIL PROTECTED]> wrote: > > We we

Re: [EMAIL PROTECTED] Apache 2.0.58 + Solaris 5.9: status "...reading..." & TCP state "FIN_WAIT_2"

2007-01-26 Thread Richard de Vries
Interesting problem. I am running Apache 2.0.59 as a reverse proxy on multiple Solaris 9 and AIX servers and have never encountered these types of issues. Perhaps you should try upgrading to 2.0.59 on one of your development machines and see if that makes a difference. If not, it is most likely

Re: [EMAIL PROTECTED] Removing or overwriting "Server" header field.

2007-01-24 Thread Richard de Vries
erns, why not! But this particular mod_security directive aside mod_security as an overall module is extremely powerful and can do much much more. R. --- Joshua Slive <[EMAIL PROTECTED]> wrote: > On 1/24/07, Richard de Vries > <[EMAIL PROTECTED]> wrote: > > > I have mod

Re: [EMAIL PROTECTED] Removing or overwriting "Server" header field.

2007-01-24 Thread Richard de Vries
Joshua, that is not entirely true. By making believe you're running a different webserver than you really are ... you can potentionally buy yourself some valuable time. If an attacker wants to attack/criple your site, he/she will most likely first try all known vulnerabilities for that webserver

Re: [EMAIL PROTECTED] Unable to bind to port 443 on 2.2.4

2007-01-23 Thread Richard de Vries
Sounds like something else is already running on port 80. Is this on unix? Try finding out what is on port 80. If you have lsof installed, you can run the following as root: lsof -i TCP:80 --- "Jain, Abhay K, INFOT" <[EMAIL PROTECTED]> wrote: > I am trying to use same instance of Aapche to > p

[EMAIL PROTECTED] mod_rewrite and HTTP headers. (Accept-Language)

2006-12-20 Thread Richard de Vries
I am an absolute newbie when it comes to mod_rewrite and I am still going thru some documentation to see whether I can make it do what I need. While I am going thru the docs and examples, I figured to post a message on this list as well, just in case someone knows the answer right from the top of

Re: [EMAIL PROTECTED] Release date for Apache 2.0.60?

2006-12-20 Thread Richard de Vries
source-code. But anyway, thanks for the feedback! --- "William A. Rowe, Jr." <[EMAIL PROTECTED]> wrote: > Richard de Vries wrote: > > I was just curious if anyone knew when we can > expect > > Apache 2.0.60. Is this right around the corner, or > > still several

Re: [EMAIL PROTECTED] mod_dav_svn.so is garbled - perhaps this is not an Apache module DSO?

2006-12-20 Thread Richard de Vries
Hmmm ... perhaps this module got compiled with a compiler not compatible with the compiler used to compile apache. I personally would still try to get a hold of the source-code, and compile this module with apxs. R --- thomas Armstrong <[EMAIL PROTECTED]> wrote: > []# yum info mod_dav_svn > -

Re: [EMAIL PROTECTED] mod_dav_svn.so is garbled - perhaps this is not an Apache module DSO?

2006-12-20 Thread Richard de Vries
I am not familiar with this module so I don't know how it is being distributed ... but can't you just locate the source and compile it yourself? --- thomas Armstrong <[EMAIL PROTECTED]> wrote: > where can I find the mod_dav_svn.so for FC6? > __ D

Re: [EMAIL PROTECTED] mod_dav_svn.so is garbled - perhaps this is not an Apache module DSO?

2006-12-20 Thread Richard de Vries
Or perhaps this .so got pulled from a different OS? It's been a while, but I think I got a similiar error when I accidentely tried using a .so compiled for linux on a solaris box. (Don't ask how this happened ... long story!) --- Joshua Slive <[EMAIL PROTECTED]> wrote: > Where did mod_dav_svn.so

[EMAIL PROTECTED] Release date for Apache 2.0.60?

2006-12-20 Thread Richard de Vries
I was just curious if anyone knew when we can expect Apache 2.0.60. Is this right around the corner, or still several months out? __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com -

RE: [EMAIL PROTECTED] Growing Error.log

2006-12-18 Thread Richard de Vries
I am running the logrotate program that comes with Apache to manager my logfiles on Windows. It will only roll them over, but at least this will stop the logfile from being in use, allowing you to run a daily batch file to either compress, delete and/or move the old logs. Additionally, you can dow

Re: [EMAIL PROTECTED] loadbalancing with Apache - Sticky Sessions

2006-12-14 Thread Richard de Vries
Thanks for the info ... I am definately going to look into this. From a quick glance I did learn that this is trictly cookie based. Do you know of anything that can generate a SID and attach it to the URL? --- Sander Temme <[EMAIL PROTECTED]> wrote: > > On Dec 14, 2006, at 8:16 AM

[EMAIL PROTECTED] loadbalancing with Apache - Sticky Sessions

2006-12-14 Thread Richard de Vries
I'm experiencing some problems with our loadbalancer infrastructure over our Apache webservers and I've been asked to set some sort of Session ID either in the environment variables, or as part of the URL. Something the loadbalancers can use to determine session information. I was thinking of mo

Re: [EMAIL PROTECTED] user stats logs

2006-12-05 Thread Richard de Vries
To my knowledge there is not module that would give you realtime statistics, but you can definately install a stats-analysis package to run analysis on your weblogs. I myself use awstats. It's opensource and free. --- Liz Kim <[EMAIL PROTECTED]> wrote: > Hello, > Does apache keep stats of viewer

Re: [EMAIL PROTECTED] Godaddy ssl sertificate problem...

2006-11-30 Thread Richard de Vries
wonder if perhaps they updated their CA? --- Richard de Vries <[EMAIL PROTECTED]> wrote: > The problem is that your certificate has been signed > by a Certificate Authority which is not trusted by > many browsers. > > Your HTTPS instance worked fine on my internet > ex

Re: [EMAIL PROTECTED] Godaddy ssl sertificate problem...

2006-11-30 Thread Richard de Vries
The problem is that your certificate has been signed by a Certificate Authority which is not trusted by many browsers. Your HTTPS instance worked fine on my internet explorer 7, but did indeed fail on firefox. An examination of the certificate revealed that your certificate was issued by StarField

Re: [EMAIL PROTECTED] unwanted redirects from clients

2006-11-25 Thread Richard de Vries
You mentioned mod_security. That to me seems the best candidate to block these types of requests. Mod Security has an extensive ruleset and I am certain it will have a way to accomplish this. Unfortunately, I am pretty much a novice as it comes to mod_security myself so I am unable to give you the

[EMAIL PROTECTED] NMAKE : fatal error U1077: 'copy' : return code '0x1'

2006-11-08 Thread Richard de Vries
Hey everyone, Last week I wrote about some problems I'd been having with trying to get Apache to compile on Windows. I received a lot of great feedback and have narrowed the problem down to Visual Studio Express. I upgraded to Visual Studio Professional and all previous compilation issues have bee

Re: [EMAIL PROTECTED] step by step instructions for compiling Apache under Windows

2006-11-03 Thread Richard de Vries
649ab77e42f8f91" > > hashalg="SHA1"> > xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" > > > xmlns:dsig="http://www.w3.org/2000/09/xmldsig#";> > > > > Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity">

Re: [EMAIL PROTECTED] step by step instructions for compiling Apache under Windows

2006-11-03 Thread Richard de Vries
;>7AY1JqoUvK3u/6bYWbOagGgAFbc= > hash="55e8e87bbde00d1d96cc119ccd94e0c02c9a2768" > hashalg="SHA1"> xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" > xmlns:dsig="http://www.w3.org/2000/09/xmldsig#";> Algorithm="urn:schemas-microsoft-com:HashTransforms.Identit

[EMAIL PROTECTED] step by step instructions for compiling Apache under Windows

2006-11-03 Thread Richard de Vries
Hi there, does anyone have any step by step instructions on how to compile Apache under windows. I did find a document on the apache website that describes how to compile Apache ... and as a matter of fact, it compiled just fine. But I am having a hell of a time figured out how the dependencies o

Re: [EMAIL PROTECTED] mod_rewrite not working

2006-11-02 Thread Richard de Vries
with -FollowSymLinks set. All instances are running on Solaris 9 ... it just doesn't make any sense. --- Joshua Slive <[EMAIL PROTECTED]> wrote: > On 11/2/06, Richard de Vries > <[EMAIL PROTECTED]> wrote: > > I looked thru it again ... and I did a grep on >

Re: [EMAIL PROTECTED] mod_rewrite not working

2006-11-02 Thread Richard de Vries
I looked thru it again ... and I did a grep on "Options" on *ALL* the config files and I can't find anything. # This is the working config: $ grep "Options" * httpd.conf:Options None httpd.conf:# Possible values for the Options directive are "None", "All", httpd.conf:# Note that "Mult

Re: [EMAIL PROTECTED] mod_rewrite not working

2006-11-02 Thread Richard de Vries
> There error message is quite explicit. On the > working server, you > must have someplace else in the config (or an > .htaccess or an > Include'd config file) where you are turning on > Options FollowSymLinks > or SymLinksIfOwnerMatch. That's just it, there is not. I don't have any .htaccess f

[EMAIL PROTECTED] mod_rewrite not working

2006-11-02 Thread Richard de Vries
I have a very strange situation. I am running two webservers. Both Apache 2.0.59 with almost identical configuration. On both servers I configured a mod_rewrite rule. It works on one, but not on the other. The webserver that does not work reports the following error message: [Thu Nov 02 08:22:16

Re: [EMAIL PROTECTED] Previewing a Virtual Host before server name is available in DNS

2006-09-27 Thread Richard de Vries
I know my hosting provider puts the document root for the virtual host in the document root of the main host. So I can look at it via http://mainhost.domain.com/. Personally I don't like this at all. You could also create a /etc/host file entry on the server running your virtual host, configure a

Re: [EMAIL PROTECTED] ProxyPass with exceptions

2006-09-21 Thread Richard de Vries
Sorry, should have been: ProxyPass http://192.168.1.1/cob ProxyPassReverse http://192.168.1.1/cob ProxyPass http://192.168.1.3/ ProxyPassReverse http://192.168.1.3/ --- Richard de Vries <[EMAIL PROTECTED]> wrote: > How about if you split your ProxyPass directive

Re: [EMAIL PROTECTED] ProxyPass with exceptions

2006-09-21 Thread Richard de Vries
How about if you split your ProxyPass directives up in Location Blocks. Does that make a difference? i.e. ProxyPass /cob http://192.168.1.1/cob ProxyPassReverse /cob http://192.168.1.1/cob ProxyPass / http://192.168.1.3/ ProxyPassReverse / http://192.168.1.3/ --- [EMAIL PROTECTED]

Re: [EMAIL PROTECTED] Re:mod_ssl and mod_proxy RPS config file

2006-09-18 Thread Richard de Vries
Ah, I think your proxypassreverse statements are not 100% correct. Try disabling those and see if it makes a difference. --- [EMAIL PROTECTED] wrote: > I must admit I am new to Apache so there may be some > obvious errors in our > reverse proxy server apache config...but here it is: > > Listen *

[EMAIL PROTECTED] duplicate emails

2006-09-18 Thread Richard de Vries
Is anyone else getting duplicate emails today? __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com - The official User-To-User

[EMAIL PROTECTED] Non-SSL to 443: Some Servers close connection, others return a 400

2006-09-01 Thread Richard de Vries
I am running Apache 2.0.59 on a mix of servers. (Linux / Solaris, AIX). How come, when I make a plain HTTP request to an SSL Enabled port, the Solaris instances immediately close the connection. telnet www.abc.com 443 Trying... Connected to www.abc.com. Escape character is '^]'. GET / HTTP/1.0 Co

[EMAIL PROTECTED] Reverse SSL Proxy on multiple ports

2006-08-31 Thread Richard de Vries
For security reasons, I am running a reverese proxy in front of my WebSphere App server. The WAS App Server only listens to 127.0.0.1, and the ports that should be exposed externally (ie. 9080, 9443 etc) are proxied thru the proxy server that runs on the same machine. So basically the proxy is tak

Re: [EMAIL PROTECTED] Apache 2.0.59 with SSL installation issue.

2006-08-31 Thread Richard de Vries
Hey, have a look at this thread. Maybe some of the suggestions will work for you ... keep us posted: http://www.howtoforge.com/forums/archive/index.php/t-1557.html --- "Tom Ray [Lists]" <[EMAIL PROTECTED]> wrote: > 0.9.8a was the security fix and 0.9.8b was a > compatibility fix. The > problem

Re: [EMAIL PROTECTED] SSL negotiation fails

2006-08-31 Thread Richard de Vries
To my knowledge this is not possible. Don't forget, the SSL HandShake needs to be completed BEFORE your client can successfully retrieve any data from your webserver. So, if this handshake fails for whatever reason (including cancelation by the user), the connection is being torn down. i.e. Even if

Re: [EMAIL PROTECTED] Apache 2.0.59 with SSL installation issue.

2006-08-31 Thread Richard de Vries
I remember seeing a similiar thread somewhere and I seem to recall it had to do with openssl 0.9.8b. Is openssl 0.9.8b a bugfix release over 0.9.8a, or a security fix? If 0.9.8b is only a bug fix, you could try it with 0.9.8a? --- "Tom Ray [Lists]" <[EMAIL PROTECTED]> wrote: > I was able to inst

Re: [EMAIL PROTECTED] HTTP Server 2.0.47 and WebSphere plugin

2006-08-29 Thread Richard de Vries
Try looking thru your websphere logs as well as your http_plugin.log file. We are running a couple of WebSphere servers on AIX as well and never had any issues with Apache. I am having a difficult time understanding why you are using a proxy servlet? Why would you want to put so much overhead on t

Re: [EMAIL PROTECTED] apache ./configure problems

2006-08-23 Thread Richard de Vries
nformation Systems > > [EMAIL PROTECTED] > > Office: 515-440-8581 > > > > > > >>> [EMAIL PROTECTED] 8/23/2006 7:59:03 AM >>> > > Thank you! This worked. > > > > Shawn Beard > > Web Administrator, MCSE, MCSA, MCP > >

Re: [EMAIL PROTECTED] apache ./configure problems

2006-08-23 Thread Richard de Vries
1 > > > >>> [EMAIL PROTECTED] 8/23/2006 7:59:03 AM >>> > Thank you! This worked. > > Shawn Beard > Web Administrator, MCSE, MCSA, MCP > Iowa Foundation for Medical Care > Information Systems > [EMAIL PROTECTED] > Office: 515-440-8581 > &g

Re: [EMAIL PROTECTED] apache ./configure problems

2006-08-22 Thread Richard de Vries
Have a look at http://www.sunfreeware.com -R --- Shawn Beard <[EMAIL PROTECTED]> wrote: > We are trying to install Apache 2.0.58 on Solaris > 10. After recieving > the following warnings, we try to do the make but > that errors out. > Also, I tried finding it but does anyone know if > ther

Re: [EMAIL PROTECTED] weblogic

2006-08-21 Thread Richard de Vries
WebLogic doesn't support Apache 2.2, and Apache 2.2 is not necesarrily downwards compatible with Apache 2.0.x. I recommend you downgrade to Apache 2.0.59 and stay on a supported platform. R --- Maria Elena Sanchez <[EMAIL PROTECTED]> wrote: > Hello, I am using Apache 2.2.3, with solaris 9 and

Re: [EMAIL PROTECTED] Files .pkg

2006-08-08 Thread Richard de Vries
> AR_APA_02_CFE_01_01.pkg, one is for apche > installing and the other for the configuration, yes > i have solaris 9, > sorry i forgot say it. Can help me? > > > Richard de Vries escribió: > > >You can download installable packages from > >www.sunfreeware.co

Re: [EMAIL PROTECTED] Files .pkg

2006-08-08 Thread Richard de Vries
You can download installable packages from www.sunfreeware.com. In the right hand navigation, click "solaris 9" and then click the "apache xxx" link. Be advised however that it may require some other packages it depends on to be installed as well. For example openSSL. I normally create my own sol

Re: [EMAIL PROTECTED] Perl data-file

2006-07-26 Thread Richard de Vries
Sounds like something fo suexec http://httpd.apache.org/docs/2.2/suexec.html --- Declerck Michael-W30479 <[EMAIL PROTECTED]> wrote: > Hello, > I have a problem with an Apache version 2.2 server > running a Perl script > on an Ubuntu 6.06 machine that creates and appends a > data-file. > Currentl

[EMAIL PROTECTED] SSI includes on .jsp pages

2006-07-19 Thread Richard de Vries
I did some googling but did not find any solutions so I am hoping you guys may have some pointers. I have some JSP pages that are being handled thru a Application Server via an apache plugin. Basically, when a request comes in for the .jsp, Apache hands it off to the plugin, who sends it on to the

RE: [EMAIL PROTECTED] Apache listening for UDP requests?

2006-07-06 Thread Richard de Vries
nt > to/from this port? > > -ascs > > -Original Message- > From: Richard de Vries > [mailto:[EMAIL PROTECTED] > Sent: Wednesday, July 05, 2006 7:07 PM > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] Apache listening for UDP > requests? > &

[EMAIL PROTECTED] Apache listening for UDP requests?

2006-07-05 Thread Richard de Vries
While debugging an issue on one of my apache webservers with lsof, I noticed the following: httpd 16679 http 23u IPv4 0x30008c5fa88 0t0 UDP *:41034 (Idle) httpd 16679 http 27u IPv4 0x30008bf4d20 0t0 UDP *:* (Unbound) httpd 16679 http 28u IPv

RE: [EMAIL PROTECTED] Reverse Proxy between WebSphere and the WebServer - prevent "Bad Gateway" errors.

2006-06-29 Thread Richard de Vries
gt; insert an additional reverse proxy in between, it > will still detect whether the application backend is > available or not based on whether the status page is > served. > > -ascs > > > -Original Message- > From: Richard de Vries > [mailto:[EMAIL PROTECT

RE: [EMAIL PROTECTED] Reverse Proxy between WebSphere and the WebServer - prevent "Bad Gateway" errors.

2006-06-28 Thread Richard de Vries
hy this should interfere with > the work of the WAS plugin since the latter, as far > as I recall, basically just performs routing based > on the contents of the JSESSIONID cookie. > > -ascs > > -Original Message- > From: Richard de Vries > [mailto:[EMAIL PRO

Re: [EMAIL PROTECTED] remote_host / remote_addr and Apache as a Reverse Proxy

2006-06-28 Thread Richard de Vries
Thanks Joshua. --- Joshua Slive <[EMAIL PROTECTED]> wrote: > On 6/27/06, Richard de Vries > <[EMAIL PROTECTED]> wrote: > > Hi, > > > > Is there any directive that can be set to have > Apache > > as a reverse proxy report REMOTE_HOST and > REMOT

RE: [EMAIL PROTECTED] Reverse Proxy between WebSphere and the WebServer - prevent "Bad Gateway" errors.

2006-06-28 Thread Richard de Vries
ultiple WAS backends, chances > that no WAS is available at any given time should be > pretty slim... > > -ascs > > -Original Message- > From: Richard de Vries > [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 28, 2006 4:50 AM > To: users@httpd.apache.org

[EMAIL PROTECTED] Reverse Proxy between WebSphere and the WebServer - prevent "Bad Gateway" errors.

2006-06-27 Thread Richard de Vries
I was wondering if anyone on this list has ever configured a WebSphere environment with a reverse Proxy (Apache) sitting between the WebSphere App Server, and the WebServer. Why would you want to do that you may ask? The answer is simple ... to secure the WebSphere Application Server instance from

[EMAIL PROTECTED] remote_host / remote_addr and Apache as a Reverse Proxy

2006-06-27 Thread Richard de Vries
Hi, Is there any directive that can be set to have Apache as a reverse proxy report REMOTE_HOST and REMOTE_ADDR properly? (instead of those variables being set to the proxy server?) Thanks :-) R __ Do You Yahoo!? Tired of spam? Yahoo! Mail has

Re: [EMAIL PROTECTED] query string from POST method

2006-06-17 Thread Richard de Vries
Have a look at mod_security. (http://www.modsecurity.org) R --- rturnbull <[EMAIL PROTECTED]> wrote: > Hello to all, > Is there a way though httpd proxy to "show" the > arguments sent with > a POST method? I have been trying to find a way to > reveal arguments > from our java applicatio

Re: [EMAIL PROTECTED] Gallery version 2.0.2

2006-05-29 Thread Richard de Vries
You'll probably have better luck at finding an answer at gallery.menalto.com But what you might want to try, is setting the "locking mechanism" in your Gallery Configuration (Administration pages) to DB instead of files. R --- Cindy O'Leary <[EMAIL PROTECTED]> wrote: > I am a complete n

Re: Re: [EMAIL PROTECTED] Apache reverse proxy and IBM websphere

2006-05-29 Thread Richard de Vries
What do the Proxy and WebSphere logfiles reveal? Have you tried a manual HTTP connection from your proxy server to your webserver server. i.e. telnet GET / HTTP/1.0 R --- Gabriele Barberi <[EMAIL PROTECTED]> wrote: > I already include the port but it doesn't work. > The reverse proxy runs

Re: [EMAIL PROTECTED] Configuring Apache behind a wireless router

2006-05-29 Thread Richard de Vries
You will need to configure Apache to listen to the IP address on that specific machine behind your router; which is most likely a private address. i.e. 192.168.x.x or 10.10.x.x Then, in your router, go to "port forwarding" and tell it to forward all incoming request for port 80, to the private IP

Re: [EMAIL PROTECTED] Apache reverse proxy and IBM websphere

2006-05-29 Thread Richard de Vries
Doesn't WebSphere run on a specific port like 9080. (and not 80). Make sure to include that port in your forward statement. Thus: ProxyPass /websphere http://websphere-address:websphere-port/WS Does the reverse proxy run on the WebSphere server, or a server external to the websphere server? R

RE: [EMAIL PROTECTED] apxs vs. configure to add modules

2006-05-19 Thread Richard de Vries
Ok, how about cd $source_dir/modules/proxy $apache-home/bin/apxs -i -a -c *proxy*.c I know I got it to work using some sort of wildcards. I'll try to see if I can find it back in my shell's history. --- JP <[EMAIL PROTECTED]> wrote: > > > > > > > > I had a similiar problem with the mod_pr

Re: [EMAIL PROTECTED] apxs vs. configure to add modules

2006-05-19 Thread Richard de Vries
I had a similiar problem with the mod_proxy modules, but even specifiying these modules during the "./configure" phase did not work properly for me. Try this: cd $source_dir/modules/proxy $apache-home/bin/apxs -i -a -c *.c R. --- JP <[EMAIL PROTECTED]> wrote: > Hi. My question is: > I

Re: [EMAIL PROTECTED] cgi permission

2006-05-15 Thread Richard de Vries
Check your selinux settings. From within your desktop "System - Administration - Security Level and Firewall" --- Amir Aavani <[EMAIL PROTECTED]> wrote: > > I recently installed FC5 on my laptop, Before that I > had FC4 with latest > version of httpd. On FC4, i developed a cgi > application (us

Re: [EMAIL PROTECTED] instaling modules

2006-05-10 Thread Richard de Vries
did you run your ./configure with "--enable-mods-shared=all" ? R --- Daniel Hernandez <[EMAIL PROTECTED]> wrote: > Hello, > I install apache from source and the modules/ dir > don't have any modules. > I need to use mod_rewrite.os for a rails > application. How can I get it? > Thanks > -- > D

Re: [EMAIL PROTECTED] Correction & Question: SSLCertificateFile: RedHat (RHEL4) apache startup failure: ebxml-registry-repository on tomcat on port 6480, with Mambo LAMP Portal on port 8080: Despite S

2006-05-09 Thread Richard de Vries
Are you using a seperate configuration file for your SSL instance? Let's start with a couple of basic things. 1) Do you have the SSL configuration between tags?. If so, what is your set to in this case? 2) SSLCertificateFile and SSLCertificateKeyFile point to valid files right? Can you do

[EMAIL PROTECTED] Apache 2.0.58: mod_proxy.so: symbol ap_proxyerror: referenced symbol not found

2006-05-04 Thread Richard de Vries
While trying to run my apache instance as a proxy, I get the following error: Cannot load /bmc/local/apps/apache/modules/mod_proxy.so into server: ld.so.1: httpd: fatal: relocation error: file /bmc/local/apps/apache/modules/mod_proxy.so: symbol ap_proxyerror: referenced symbol not found I have my

Re: [EMAIL PROTECTED] Question about setting up secure service

2006-05-04 Thread Richard de Vries
Instead of using , try putting all your SSL virtual host settings between R. --- Bill Angus <[EMAIL PROTECTED]> wrote: > Krist and all... Thanks for the information you > gave. It helped me to debug some of my mistakes in > the .conf files and to understand a bit of what is > going wrong.

[EMAIL PROTECTED] Apache 2.0.56 release date

2006-04-28 Thread Richard de Vries
Has anyone heard any rumble yet about the Apache 2.0.56 release date?. If I am mistaking Apache 2.0.56-dev has been out for quite some time already, and Apache 2.0.55 does have a couple of known issues/vulnerabilities. R __ Do You Yahoo!? Tired o

Re: [EMAIL PROTECTED] Is there a how-to for building an Apacher server farm?

2006-04-26 Thread Richard de Vries
At work I've built several webserver farms. You will need to configure multiple apache webservers, and put a loadbalancer in front of it. Either a hardware based loadbalancer,or software-based loadbalancer such as PLB. If you want multiple levels of redundancy, you can configure a load-balanced loa

Re: [EMAIL PROTECTED] Making Apache 2.2 work with Weblogic 8.1 (both on Solaris 9)

2006-04-24 Thread Richard de Vries
I had a similar situation with WebSphere. It's just not compatible. I would definately recommend asking for a Apache 2.2 WebLogic plugin, but there is a good chance they won't have one for you. So, in the end you may have to back down to Apache 2.0.55. R --- Joshua Slive <[EMAIL PROTECTED]> w

RE: [EMAIL PROTECTED] Maurizio Salviato/PAM/IT � in ferie.

2006-04-12 Thread Richard de Vries
hehe ... :-) --- Boyle Owen <[EMAIL PROTECTED]> wrote: > > -Original Message- > > From: Richard de Vries > [mailto:[EMAIL PROTECTED] > > Sent: Mittwoch, 12. April 2006 15:01 > > To: users@httpd.apache.org > > Subject: Re: [EMAIL PROTECTED]

Re: [EMAIL PROTECTED] Maurizio Salviato/PAM/IT � in ferie.

2006-04-12 Thread Richard de Vries
If you want a timely and/or meaningful reply, you should really consider writing your messages in english. --- [EMAIL PROTECTED] wrote: > > Sarò assente dall'ufficio a partire da Mar > 04/04/2006 fino a Gio > 20/04/2006. > > Risponderò al messaggio al mio ritorno. > > >

[EMAIL PROTECTED] (70007)The timeout specified has expired: SSL input filter read failed.

2006-04-11 Thread Richard de Vries
Perhaps a known issue, though I haven't been able to find much info on it. Is anyone experiencing the following error.log entries on their SSL instance: [Tue Apr 11 23:29:18 2006] [info] (70007)The timeout specified has expired: SSL input filter read failed. the HTTPs instance *appears* to work

Re: [EMAIL PROTECTED] return 404 for specific url ?

2006-03-16 Thread Richard de Vries
Hey there, it sounds like you should be able to get this to work with mod_rewrite ... but either way, you should have a look at mod_security. (http://www.modsecurity.org/) It can do that, and so much more! R. --- peter pilsl <[EMAIL PROTECTED]> wrote: > > I want to configure a virtual host

Re: [EMAIL PROTECTED] --enable-mods-shared=all vs --enable-so

2006-03-15 Thread Richard de Vries
Hey, thanks for that excellent anwser. Cheers! --- Joshua Slive <[EMAIL PROTECTED]> wrote: > On 3/15/06, Richard de Vries > <[EMAIL PROTECTED]> wrote: > > What exactly is the difference between > > --enable-mods-shared=all and --enable-so. Is there > a > &

[EMAIL PROTECTED] --enable-mods-shared=all vs --enable-so

2006-03-15 Thread Richard de Vries
What exactly is the difference between --enable-mods-shared=all and --enable-so. Is there a difference? R __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com --

Re: [EMAIL PROTECTED] [newbie]Setting a secured apache server

2006-03-14 Thread Richard de Vries
You oughta look into mod-security. It allows you to do some real neat stuff as far as "securing a webserver" is concerned. --- Kishore Jalleda <[EMAIL PROTECTED]> wrote: > yes SSL would be your best bet, with .htaccess your > passwords would be > travelling in plain text, so go for SSL... > > Ki

RE: [EMAIL PROTECTED] best practices - section or not?

2006-03-13 Thread Richard de Vries
Owen <[EMAIL PROTECTED]> wrote: > > -Original Message- > > From: Richard de Vries > [mailto:[EMAIL PROTECTED] > > Sent: Montag, 13. März 2006 14:59 > > To: users@httpd.apache.org > > Subject: [EMAIL PROTECTED] best practices - > section or not? &

[EMAIL PROTECTED] best practices - section or not?

2006-03-13 Thread Richard de Vries
So I am trying to install this 3rd party application, and it simply won't install without a "" section in my httpd.conf. Since my web server is only running 1 webserver/instance ... I did not define a section. So, I am kinda curious. Is it strange to not define a virtualhost section? Is it a "be

Re: [EMAIL PROTECTED] apache and webmin

2006-03-01 Thread Richard de Vries
The fact "locate" shows the file as being there does not necesarrily mean it is still there. Have you tried doing a "ls -la /usr/local/lib/libexpat.so.5". Perhaps libexpat.so.5 is a symbolic link to a no longer existing file? Additionally, you could try to set your LD_LIBRARY_PATH to specifically

Re: [EMAIL PROTECTED] apachectl and multiple daemons

2006-02-22 Thread Richard de Vries
A. Rowe, Jr." <[EMAIL PROTECTED]> wrote: > Nick Kew wrote: > > On Wednesday 22 February 2006 21:23, Richard de > Vries wrote: > > > >>I have the need to run multiple daemons off of the > >>same apache base install. > > > > Erm, why? > &g

[EMAIL PROTECTED] apachectl and multiple daemons

2006-02-22 Thread Richard de Vries
I have the need to run multiple daemons off of the same apache base install. Each daemon will have it's own configuration file of course, but since they are all configured pretty much the same (same modules etc) I don't see a need to have several apache installs. So, I'd have one install, i.e.

Re: [EMAIL PROTECTED] bandwidth

2006-02-22 Thread Richard de Vries
I had the problem of "empty" logs as well. You wouldn't happen to have the logfile settings between tags would you ? For some reason this wouldn't work for me. I had to change that to As far as bandwidth usage; either parse the logs as someone suggested or perhaps set some counte

Re: [EMAIL PROTECTED] make install error with apache 2.2.0 and Solaris

2006-02-15 Thread Richard de Vries
Why don't you grab a pre-compiled package from http://www.sunfreeware.com R --- Jeff Long <[EMAIL PROTECTED]> wrote: > Sorry for the poorly formatted followup here, I just > joined the list. > > Anyway, I'm using Solaris 8, using /usr/ccs/bin/make > and I get the same > errors regarding sed.

Re: [EMAIL PROTECTED] Installation / Permissions Problem Apache 1.3.31 with Mod_SSL

2006-02-13 Thread Richard de Vries
I had a similar problem once, though the explanation of the root cause is quite long. Try changing the path info to the 8.1 naming convention. i.e. c:\progra~1\apache\ etc instead of c:\program files\apache\ and see if that makes a difference for you. --- [EMAIL PROTECTED] wrote: > Ho

Re: [EMAIL PROTECTED] email sending utility

2006-02-10 Thread Richard de Vries
Indigostar has a sendmail for Windows application. You can find it here: http://www.indigostar.com/sendmail.htm If you google, you may even find a similar free application somewhere. --- Shipra Mehta <[EMAIL PROTECTED]> wrote: > Hi, > > I am using Apache for windows XP v. 2.0.55. I would > lik

Re: [EMAIL PROTECTED] mod_rewrite directive in main config does not trickle down into the https instance

2006-02-10 Thread Richard de Vries
ve <[EMAIL PROTECTED]> wrote: > On 2/10/06, Richard de Vries > <[EMAIL PROTECTED]> wrote: > > Hey all, > > > > I configured a couple of mod_rewrite directives in > the > > main configuration file to disable the TRACE/TRACK > > methods. However, the

[EMAIL PROTECTED] mod_rewrite directive in main config does not trickle down into the https instance

2006-02-10 Thread Richard de Vries
Hey all, I configured a couple of mod_rewrite directives in the main configuration file to disable the TRACE/TRACK methods. However, these rules do not seem to make it into the HTTPS instance; even though I put them in the main config, and not in the virtual hosts. # Disable/Block TRACE/TRACK req

Re: [EMAIL PROTECTED] CustomLog logs/access_log combined not working from within

2006-02-05 Thread Richard de Vries
be the "mod_real_name.c" ? --- Richard de Vries <[EMAIL PROTECTED]> wrote: > Hmm ... nope, that didn't work either :( > > Just for fun I used an directive from an > other module that is loaded ... i..e ssl_module> which I know works on other > configuratio

Re: [EMAIL PROTECTED] CustomLog logs/access_log combined not working from within

2006-02-05 Thread Richard de Vries
ave: > > > > > > > > Keith > > > In theory, theory and practice are the same; > In practice they are not. > > On Sat, 4 Feb 2006, Richard de Vries wrote: > > > To: users@httpd.apache.org > > From: Richard de Vries <[E

[EMAIL PROTECTED] CustomLog logs/access_log combined not working from within

2006-02-04 Thread Richard de Vries
I am having the weirdest problem. Running Apache 2.0.55 on Solaris 9, I am unable to get Apache to generate and write to the access_log file while the CustomLog directive is enclosed in the tags. This is what I have: # # The following directives define some format nicknames for use wi