[EMAIL PROTECTED] mod_proxy submodules

2008-06-18 Thread Mathew
I'm looking for a list of the mod_proxy submodules but have come up empty in my searches. Can anyone point me to one? Mathew -- Keep up with my goings on at http://feeds.feedburner.com/theillien_atom - The official User-To-Use

RE: [EMAIL PROTECTED] Emergency Web Server Configuration

2008-06-18 Thread David Dyer-Bennet
Lance Campbell < [EMAIL PROTECTED] > said: OS: Linux Red Hat Apache: 2.2.x I am setting up a dedicated apache web server in order to push out emergency web pages in the event of an emergency on campus. The content that would be pushed out would be static cont

[EMAIL PROTECTED] Emergency Web Server Configuration

2008-06-18 Thread Campbell, Lance
OS: Linux Red Hat Apache: 2.2.x I am setting up a dedicated apache web server in order to push out emergency web pages in the event of an emergency on campus. The content that would be pushed out would be static content only consisting of a few dozen web pages. I have verified that the numbe

Re: [EMAIL PROTECTED] zpx520.com hidden iframe in stock Win32 install?

2008-06-18 Thread Mark H. Wood
A quick search turns up this page: http://www.threatexpert.com/report.aspx?uid=681ac5d0-36d8-4217-8e0f-38f5b928fb14 -- Mark H. Wood, Lead System Programmer [EMAIL PROTECTED] Typically when a software vendor says that a product is "intuitive" he means the exact opposite. pgp1vpEk4tMHO.pgp

Re: [EMAIL PROTECTED] zpx520.com hidden iframe in stock Win32 install?

2008-06-18 Thread Greg Mortensen
On Wed, 18 Jun 2008, Issac Goldstand wrote: Doesn't sound right to me... I've certainly never noticed it on win32 installs, though I don't have an environment to test it myself just now I just tried 2.0.63 and the same thing happens. Using a handful of sysinternal tools, I can see the fol

RE: [EMAIL PROTECTED] Question about mod_ssl & mod_jk

2008-06-18 Thread Tan, Liao
All, I´m told that having the directives in httpd.conf SSLRandomSeed startup builtin SSLRandomSeed connect builtin means that my apache is configured with mod_ssl (and they´re uncommented). Now the question risen up is how do I do to have my https working? As I mentioned below, already have

Re: [EMAIL PROTECTED] Load Balancer error

2008-06-18 Thread Rodrigo Correa de Paiva
Krist, For a reason that i dont know, the tomcats stop to answer on ajp connector. I changed the apache redirect config to another server and was working. so i restarted the tomcats and the service becomes normal. i think that since the computers was created, the restart is the way that solve more

Re: [EMAIL PROTECTED] zpx520.com hidden iframe in stock Win32 install?

2008-06-18 Thread Issac Goldstand
Greg Mortensen wrote: Hi, list. I need a quick sanity check. I have a stock 2.2.9 httpd (Win32 Binary including OpenSSL 0.9.8h (MSI Installer)) install on my Windows XP box. I just got the binary from the veritris.com mirror. The MD5 signature checks out fine. Everything looked OK while

[EMAIL PROTECTED] zpx520.com hidden iframe in stock Win32 install?

2008-06-18 Thread Greg Mortensen
Hi, list. I need a quick sanity check. I have a stock 2.2.9 httpd (Win32 Binary including OpenSSL 0.9.8h (MSI Installer)) install on my Windows XP box. I just got the binary from the veritris.com mirror. The MD5 signature checks out fine. Everything looked OK while connecting to localhost

[EMAIL PROTECTED] mod_dir bypasses mod_cache

2008-06-18 Thread Adriano Nagel
Hi, I'm using Apache 2.2.8. When fetching a URL that will be processed by mod_dir, eg: http://localhost/ the contents aren't cached by mod_cache (with mod_disk_cache as the backend). However, explicitly accessing http://localhost/index.html will make this URL cached. It seems this is a long-

Re: [EMAIL PROTECTED] Packet debugging when using mod_ssl

2008-06-18 Thread Krist van Besien
On Wed, Jun 18, 2008 at 16:48, Ian Lord <[EMAIL PROTECTED]> wrote: > Is there a way to actually "dump" the content of the request after being > decrypted by mod_ssl but before it is analysed for processing ? Yes. mod_dumpio will do this for you: http://httpd.apache.org/docs/2.0/mod/mod_dumpio.ht

Re: [EMAIL PROTECTED] editing httpd.conf file through shell script

2008-06-18 Thread Mohit Anchlia
You can use head and tail commands in shell to do what you want to do. You could do something like: x=`grep -n "DocumentRoot /websites/vodafone/web" httpd.conf` # gets the line number cat httpd.conf|head -$x > tmp.conf echo "AddType application/x-httpd-php .php" >> tmp.conf cat httpd.conf|tail +$x

RE: [EMAIL PROTECTED] Packet debugging when using mod_ssl

2008-06-18 Thread Wilda, Jet
Hi, We use ssldump http://www.rtfm.com/ssldump/ to do that sort of thing. Though you may need to disable some of the cipher suites (found that diffie-hellman doesn't work). ~Jet -Original Message- From: Ian Lord [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 18, 2008 10:48 AM

RE: [EMAIL PROTECTED] Question about mod_ssl & mod_jk

2008-06-18 Thread Tan, Liao
Hah, unfortunately, my background about Apache, Tomcat stuffs is not enough to let me figure the joke out. I searched over all logs I could find, and didnt found any mod_ssl:(. So I guess I need to do something to enable, install it. Saw in the 1st link that I need to download the source in mo

Re: [EMAIL PROTECTED] mod_mem_cache on a proxy server

2008-06-18 Thread François Beausoleil
Bump? Anyone? Thanks! François Le 2008-06-13 à 12:14, François Beausoleil a écrit : Hi all, I have Apache used as a load balancer in front of a couple of Mongrels (ruby on rails application). Reading the documentation for Apache, I was under the impression that the requests would not be

[EMAIL PROTECTED] Packet debugging when using mod_ssl

2008-06-18 Thread Ian Lord
Hi, I am dealing with a connexion problem from a custom web browser. For some reason, one particular user from the custom web browser is getting an error 400 (Bad Request) from Apache on a specific page requested by POST. I've did a lot of research and can't find what's wrong... I would like to

Re: [EMAIL PROTECTED] editing httpd.conf file through shell script

2008-06-18 Thread Krist van Besien
On Wed, Jun 18, 2008 at 15:39, Agnello George <[EMAIL PROTECTED]> wrote: > now through a shell script i need to add mime type for domain vodafone.com > , i would need to add the following bellow "DoucmentRoot" > > AddType application/x-httpd-php .php > > AddType application/x-httpd-php-source .p

Re: [EMAIL PROTECTED] Question about mod_ssl & mod_jk

2008-06-18 Thread André Warnier
Hi again. Sorry Ingrid, my first response was a little joke. I saw your earlier post to the Tomcat list, and could not resists asking you again. We have to keep up our guru image, you know. ;-) Anyway, I cannot help you a lot, but maybe some : To find out whether your Apache server has SSL lo

Re: [EMAIL PROTECTED] Question about mod_ssl & mod_jk

2008-06-18 Thread André Warnier
Actually, go to Google and search for exactly this : apache ssl howto hpux The first link on that page may be what you need. Tan, Liao wrote: Actually, the module directives I extracted from another apache which has already https working, and as I´m not familiar with version particularities, I

RE: [EMAIL PROTECTED] Question about mod_ssl & mod_jk

2008-06-18 Thread Tan, Liao
Actually, the module directives I extracted from another apache which has already https working, and as I´m not familiar with version particularities, I didn´t know if I can put them to mine, which is in fact 2.0 So, at this point, I think my version will probably have different configuration t

[EMAIL PROTECTED] Redhat patch level cheatsheet?

2008-06-18 Thread Brandie.B.Huber
Anyone have a link to a cheatsheet that translates RedHat Enterprise's backported patch levels for Apache products to Apache HTTP Server's original patch levels? I'm not able to find it via Google or RHN. Thanks in advance! Brandie smime.p7s Description: S/MIME cryptographic signature

Re: [EMAIL PROTECTED] Question about mod_ssl & mod_jk

2008-06-18 Thread André Warnier
Hi. Your configuration snippets below look like Apache 1.x, but you mention that you are using 2.x. How come ? André Tan, Liao wrote: Hello, experts: My apache installed is has only the mod_jk.sl in the "libexec/" directory. I want to know what I need to do in order to to configure my

[EMAIL PROTECTED] editing httpd.conf file through shell script

2008-06-18 Thread Agnello George
hi i am trying to edit my httpd.comf file through a shell script .. (( actually I trying to set up a control panel )) my httpd.conf host directives for many domains , the file is something like this : ##START###rodney.com### http://192.168.0.244/>> Server

[EMAIL PROTECTED] Question about mod_ssl & mod_jk

2008-06-18 Thread Tan, Liao
Hello, experts: My apache installed is has only the mod_jk.sl in the "libexec/" directory. I want to know what I need to do in order to to configure my current http to https? I know this is a very general question, but to start, I guess I need to include the directives in httpd.conf: 1) L

Re: [EMAIL PROTECTED] does apache and its extensions will be suitable for multi users chat or games

2008-06-18 Thread André Warnier
Raul Santiago wrote: [...] Interesting how different people can say essentially the same thing in a different way.. And nicely, too. - The official User-To-User support forum of the Apache HTTP Server Project. See http://htt

Re: [EMAIL PROTECTED] does apache and its extensions will be suitable for multi users chat or games

2008-06-18 Thread André Warnier
Meir Yanovich wrote: can you please explain or give some more info/links to read what plug ins do i need or recommended setup thanks On Wed, Jun 18, 2008 at 10:44 AM, Matus UHLAR - fantomas <[EMAIL PROTECTED]> wrote: On 17.06.08 21:21, Meir Yanovich wrote: i wander can i use apache server for

Re: [EMAIL PROTECTED] does apache and its extensions will be suitable for multi users chat or games

2008-06-18 Thread Raul Santiago
Meir Yanovich escribió: Hello all i wander can i use apache server for web based chat systems or multi users games as the servers that handles the connections and threads handling . - The official User-To-User support forum of t

Re: [EMAIL PROTECTED] How to remove my server from Open Proxy list

2008-06-18 Thread Matus UHLAR - fantomas
On 17.06.08 12:58, Zia Syed wrote: > Well, I've committed a rookie mistake. I enabled ProxyRequest on my > server without securing it and today I realized that my server is > under attack. I've turned off the server (since its a home server), > and change the configurations > ProxyRequeste Off > Pr

Re: [EMAIL PROTECTED] does apache and its extensions will be suitable for multi users chat or games

2008-06-18 Thread Meir Yanovich
can you please explain or give some more info/links to read what plug ins do i need or recommended setup thanks On Wed, Jun 18, 2008 at 10:44 AM, Matus UHLAR - fantomas <[EMAIL PROTECTED]> wrote: > On 17.06.08 21:21, Meir Yanovich wrote: >> i wander can i use apache server for web based chat syste

Re: [EMAIL PROTECTED] does apache and its extensions will be suitable for multi users chat or games

2008-06-18 Thread Matus UHLAR - fantomas
On 17.06.08 21:21, Meir Yanovich wrote: > i wander can i use apache server for web based chat systems or multi users > games > as the servers that handles the connections and threads handling . Yes, you can and threads have nothing to do with it. -- Matus UHLAR - fantomas, [EMAIL PROTECTED] ; ht