RE: [EMAIL PROTECTED] How to set up Apache2 forward proxy server over SSL?

2006-06-27 Thread Axel-Stéphane SMORGRAV
No it's not. It's mostly used to fix poor HTML code served by the application server (e.g. absolute URLs), or URL prefixes modified by the proxy server (why would anyone want to do that anyway ?) thereby breaking links (e.g. http://apache.webthing.com/mod_proxy_html/faq.html -ascs ___

RE: [EMAIL PROTECTED] reverse proxy fails on uri escape sequences

2006-06-27 Thread Axel-Stéphane SMORGRAV
You've already asked this question in another thread. Please do not hijack other people's threads. If you do not get a response within a few days, post again - in the same thread. -ascs From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, June

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

2006-06-27 Thread Axel-Stéphane SMORGRAV
If it were not for the Proxy server, the user would just get a "Connection refused" or "Unable to connect/Connection timed out" which in my opinion is no better than that HTTP 502 (Bad Gateway). At least the proxy server gives you the option of serving a custom error page for the HTTP 502 using

RE: [EMAIL PROTECTED] reverse proxy fails on uri escape sequences

2006-06-27 Thread Axel-Stéphane SMORGRAV
I managed to reproduce this behaviour on Apache 2.0.54 (on Solaris). Wasn't difficult either. Seems like when the URL contains a %2F (which I believe is a / ??), mod_rewrite is never invoked, or silently (no log) declines to handle the request. Nevertheless, I do indeed have an idea: why would

Re: [EMAIL PROTECTED] chmod

2006-06-27 Thread Steven Pierce
You do not use chmod in windows.  What are you trying to do? If you want to change the property on a file in windows //Right click on the file, then go properties / at the bottom of the screen you can do read, write , hidden.   I think that you would get a little more help if you explained wha

Re: [EMAIL PROTECTED] Mod-rewrite not finding text that is found by regex test site.

2006-06-27 Thread Michael Daly
On 27 Jun 2006 at 16:45, Joshua Slive wrote: > On 6/26/06, Michael Daly <[EMAIL PROTECTED]> wrote: > > I'm trying to catch camelCase names. The mod_rewrite log file > > shows: > > > > RewriteCond: input='^/cgi-sys/cgiwrap/guille/wiki.pl/fooBar' > > pattern='^/cgi-sys/cgiwrap/guille/wiki.pl/(.*)([

[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

[EMAIL PROTECTED] Apache2 and UDP

2006-06-27 Thread Alan Gibson
Hello all, I know Im really stepping into it here, but does anyone know of any tips, tricks or hacks to get Apache2 to work over UDP? I understand that HTTP should only ever use TCP because the complete response is generally important. This is admittedly outside of the normal range of HTTP opera

Re: [EMAIL PROTECTED] reverse proxy fails on uri escape sequences

2006-06-27 Thread frankpeng
Hi,   I am also setting up a reverse proxy server. Do you know how to add a charset for libxml2? It is required for mod_proxy_html   Frank Peng.  -Original Message-From: Lewis Hoffman <[EMAIL PROTECTED]>To: users@httpd.apache.orgSent: Tue, 27 Jun 2006 22:28:22 +Subject: [EMAIL PROTECT

[EMAIL PROTECTED] Apache reverse proxy server: How to add a charset for libxml2 and libiconv?

2006-06-27 Thread frankpeng
Hi, Any body know how to add a charset for libxml2? It is required for mod_proxy_html when setting up Apache reverse proxy server.   Thanks a lot!   Frank Peng.

RE: [EMAIL PROTECTED] Mod_Dav WindowsXP client

2006-06-27 Thread Todd L Hicks
Chris I'm coming in late to this, but have you tried appending the port number to the url? If you haven't already found it, take a look at here: http://www.thrrrust.com/~pclark/blog/2005/03/fun-with-windows-xp-and-webdav. html It helped me with this problem. Regards, Todd -Original Message--

[EMAIL PROTECTED] reverse proxy fails on uri escape sequences

2006-06-27 Thread Lewis Hoffman
Hello, I'm running a reverse proxy in apache-2.0.54For most urls, it's working great.  However, some URI escape sequences cause 404s from apache.  It seems as if they never get to the rewrite rule.For example, these two URLs: 1) http://wagon.grasscommons.org/c/wiki/new/thisthat2) http://wagon.gras

RE: [EMAIL PROTECTED] mod_authn_dbd encrypted password?!

2006-06-27 Thread Chris Liles
After looking at the perl script suggested by Joshua, I see that I can use crypt(), so I tested and it works. Of course postgres doesn't have a crypt() function :( I really want to be able to just insert in the database like crypt('plaintext') and have postgres handle the hashing. Is there a way

Re: [EMAIL PROTECTED] mod_authn_dbd encrypted password?!

2006-06-27 Thread Nick Kew
On 27 Jun 2006, at 14:28, Chris Liles wrote: Hello list! When setting up mod_authn_dbd to hit a postgresql data base the documentation says that the AuthDBDUserPWQuery must return an encrypted password. Would someone please tell me how I am suppose to crypt the password when storing it i

Re: [EMAIL PROTECTED] Mod-rewrite not finding text that is found by regex test site.

2006-06-27 Thread Joshua Slive
On 6/26/06, Michael Daly <[EMAIL PROTECTED]> wrote: I'm trying to catch camelCase names. The mod_rewrite log file shows: RewriteCond: input='^/cgi-sys/cgiwrap/guille/wiki.pl/fooBar' pattern='^/cgi-sys/cgiwrap/guille/wiki.pl/(.*)([a-z])([A-Z])(.*)' => not-matched Testing at www.regular-expressi

Re: [EMAIL PROTECTED] Caching large amounts of small images... the best way?

2006-06-27 Thread Joshua Slive
On 6/27/06, Forrest Aldrich <[EMAIL PROTECTED]> wrote: This appears to be experimental. I don't believe mod_cache/mod_disk_cache is experimental in 2.2.2. It is in earlier versions, but I've already recommended you stay away from those. How would an approach like this compare to a product

Re: [EMAIL PROTECTED] mod_authn_dbd encrypted password?!

2006-06-27 Thread Joshua Slive
On 6/27/06, Chris Liles <[EMAIL PROTECTED]> wrote: Hello list! When setting up mod_authn_dbd to hit a postgresql data base the documentation says that the AuthDBDUserPWQuery must return an encrypted password. Would someone please tell me how I am suppose to crypt the password when storing it i

Re: [EMAIL PROTECTED] Caching large amounts of small images... the best way?

2006-06-27 Thread Forrest Aldrich
Joshua Slive wrote: On 6/26/06, Forrest Aldrich <[EMAIL PROTECTED]> wrote: We are developing a new infrastructure that will serve up images directly from a database. In front of this process, we would like to place a cache of the most frequently accessed images. This would serve to reduce the

Re: [EMAIL PROTECTED] Apache reverse proxy and connection keep alive

2006-06-27 Thread Joshua Slive
On 6/27/06, Pieter Vanmeerbeek <[EMAIL PROTECTED]> wrote: Hi, I'm using apache 2.0.53 as a reverse proxy for a simple html backend server. Internet <-- http--> reverse proxy <--http--> server on lan I was wondering how a connection keep alive can be activated for the communication between the

[EMAIL PROTECTED] Question about remote_user variable and apache authentication

2006-06-27 Thread Chris Wildman
After hours of reading google's results and fumbling with directives I am coming to you users for aide. I am currently running: SERVER_SOFTWARE="Apache/2.2.2 (Win32) mod_perl/2.0.3-dev Perl/v5.8.8" I would like to be able to see the remote_user variable and use it in my scripts. However I do no

[EMAIL PROTECTED] chmod

2006-06-27 Thread Chris Ackford
does anyone know how to set up chmod premissions on a file in win xp pro need to change "conf_global.php" to 0666 need this to install ips some 1 please help me     chris ackford

Re: [EMAIL PROTECTED] apache 2.2.2 and user right access

2006-06-27 Thread Rainer Sokoll
P.M wrote: > In fact, the other computers can do not find the folder /kmt doing > http://my-ip-address/kmt Pleeease: Be more verbose: What /exactly/ is the error the client sees? What information /exactly/ is logged in the server's log? Is your network configured properly? Rainer --

[EMAIL PROTECTED] Log file shows -ve number for %D (time spent in microseconds)

2006-06-27 Thread DEBIN GAO
Hi, some entried in my log file shows a negative number for %D (time spent in microsoft). what does that mean? Thanks. - Debin - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.

Re: [EMAIL PROTECTED] Apache reverse proxy and RPC and possible NTLM

2006-06-27 Thread frankpeng
Do you have to turn SSLEngine off and set SSLProxyEngine on?   I will do the same thing as you. I did not start yet.   Client on the Internet-->SSL(https)-->Apache Reverse Proxy Server-->SSL and non-SSL web sites on the Internet.   Please help each other.   Frank Peng.   -Original Message-

[EMAIL PROTECTED] Re: apache 2.2.2 and user right access

2006-06-27 Thread Bill Jones
On 6/27/06, P.M <[EMAIL PROTECTED]> wrote: however, it does not work. it works on my PC (where apache is installed) as http://localhost/kmt but it does not work if we do (on another PC) http://my_ip_address/kmt. Im taking a leap here: Are you sure you are not using a local Windows firewall? I

RE: [EMAIL PROTECTED] Mod_Dav WindowsXP client

2006-06-27 Thread Chris Toledo
Yes, you are right it does send domain\username. Is there a way to work around this? Christian Toledo Web Administrator WebCollage Inc. P: 646.827.2579 F: 212.563.2112 -Original Message- From: Rainer Sokoll [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 27, 2006 4:44 AM To: users@httpd.a

Re: [EMAIL PROTECTED] apache 2.2.2 and user right access

2006-06-27 Thread P.M
In fact, the other computers can do not find the folder /kmt doing http://my-ip-address/kmtno firewall or router or proxyrules exist.my pc is accessible to everybody.MaileenJesse Ross <[EMAIL PROTECTED]> wrote: Hi Maileen,It's not clear from what you say that this is an apache problem, but if it we

[EMAIL PROTECTED] Apache reverse proxy and connection keep alive

2006-06-27 Thread Pieter Vanmeerbeek
Hi, I'm using apache 2.0.53 as a reverse proxy for a simple html backend server. Internet <-- http--> reverse proxy <--http--> server on lan I was wondering how a connection keep alive can be activated for the communication between the reverse proxy and server on lan. Is it just a matter of addi

[EMAIL PROTECTED] Apache reverse proxy and RPC and possible NTLM

2006-06-27 Thread Pieter Vanmeerbeek
Hi, I'm new to this list so I searched the archives first but didn't find the solution. I'm trying to setup an OWA 2003 with an apache (2.0.53) reverse proxy. (apparently many people on this list are doing so). This is my setup (please note that HTTP is used in the lan). Client on the Internet<--

Re: [EMAIL PROTECTED] Mod_Dav WindowsXP client

2006-06-27 Thread David Salisbury
You can search the archives for an answer that I recieved for the exact same problem.. I don't seem to still have it, but it contains a link to a page that goes into some detail, sent May 26, subject "IE to Apache WebDAV" but the long and short of it for me was that you need to go to Network P

Re: [EMAIL PROTECTED] apache 2.2.2 and user right access

2006-06-27 Thread Jesse Ross
Hi Maileen, It's not clear from what you say that this is an apache problem, but if it were it would probably be a deny statement somewhere in your configuration. It's worth going over all the denies in your config files to make sure you understand what they're doing. Non-apache possibiliti

Re: [EMAIL PROTECTED] "public_html" for each user don"t work.

2006-06-27 Thread Joshua Slive
On 6/27/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: I used Fedora Core 3. I read that already. The fact that you have no idea what I mean by "SELinux" probably means that this is the source of your problem. See: http://httpd.apache.org/docs/2.2/faq/error.html#error.permissiondenied

Re: [EMAIL PROTECTED] Re: users Digest 27 Jun 2006 11:29:42 -0000 Issue 2505

2006-06-27 Thread Joshua Slive
On 6/27/06, Brad Bowman <[EMAIL PROTECTED]> wrote: Which leads me to this question, Is mod_rewrite capable of rewriting the query string portion of the url? The end result of what i'm hoping to do here is rewrite URI's in the form: http://server.com/cgi-bin/miva?Merchant2/merchant.mv+Screen=PROD

Re: [EMAIL PROTECTED] "public_html" for each user don"t work.

2006-06-27 Thread rsomsak123
I used Fedora Core 3. Quoting Joshua Slive <[EMAIL PROTECTED]>: > On 6/27/06, [EMAIL PROTECTED] > <[EMAIL PROTECTED]> wrote: > > Dear Sir, > > I used Apache/2.0.52 that come with Fedora Core 3. > > I want to config "public_html" for each user in file > > "httpd.conf" but don"t work. > >

[EMAIL PROTECTED] Re: users Digest 27 Jun 2006 11:29:42 -0000 Issue 2505

2006-06-27 Thread Brad Bowman
On Jun 27, 2006, at 7:29 AM, [EMAIL PROTECTED] wrote: I have the following line in my httpd.conf file: ScriptAlias  /cgi-bin/ /var/www/vhosts/site/cgi-bin/ And the following two rules in .htaccess: RewriteRule ^random/miva(.*)$ /mm5/merchant.mvc$1 [R=301] RewriteRule ^cgi-bin/miva(.*)$ /mm5/mercha

Re: [EMAIL PROTECTED] "public_html" for each user don"t work.

2006-06-27 Thread rsomsak123
I follow you to use 755 but still problem. Any idea ? reagrds, Somsak. Quoting Felipe Tocchetto <[EMAIL PROTECTED]>: > try use 755 on your home: > > drwxr-xr-x 18 felipe other 2560 Jun 26 16:21 felipe > > On 6/27/06, [EMAIL PROTECTED] > <[EMAIL PROTECTED]> w

[EMAIL PROTECTED] List Admin Problems - Problems Unsubscribing

2006-06-27 Thread Joshua Slive
As has been stated many times, there is an address you can send to if you have problems with mailing list functionality (subscription, unsubscription, etc): users-ownerhttpd.apache.org Please do not send such messages to the list. Even with this disruptive flurry of people complaining about u

Re: [EMAIL PROTECTED] THIS IS NOT THE WAY A MAILING LIST DAEMON SHOULD WORK!

2006-06-27 Thread Joshua Slive
On 6/27/06, Mattias Segerdahl <[EMAIL PROTECTED]> wrote: You know what, now I do understand the last couple of days spamming on the list. And the spam is just the reason why I don't want to have nothing to do with this list no more. The mailing list daemon is really foobar'd.. Remove me from the

Re: [EMAIL PROTECTED] (again) Can not define "default" name virtual host

2006-06-27 Thread Matus UHLAR - fantomas
> > > > Now when a request arrives, the server will first check if it is using an IP > > address that matches the NameVirtualHost. If it is, then it will look at > > each section with a matching IP address and try to find one > > ^^^ > > where the

Re: [EMAIL PROTECTED] (again) Can not define "default" name virtual host

2006-06-27 Thread Matus UHLAR - fantomas
> > > > Now when a request arrives, the server will first check if it is using an IP > > address that matches the NameVirtualHost. If it is, then it will look at > > each section with a matching IP address and try to find one > > ^^^ > > where the

Re: [EMAIL PROTECTED] Unsubscriptions issues...

2006-06-27 Thread Joshua Slive
On 6/27/06, Matus UHLAR - fantomas <[EMAIL PROTECTED]> wrote: You must send plaintext e-mail to unsubscribe from mailing lists. I don't think that is the problem. ezmlm commands use only the To address, not the body. So html shouldn't affect anything. Joshua. --

Re: [EMAIL PROTECTED] (again) Can not define "default" name virtual host

2006-06-27 Thread Joshua Slive
On 6/27/06, Neil A. Hillard <[EMAIL PROTECTED]> wrote: You are trying to do something that Apache is not designed for. You want: 195.168.3.66 -> /home/webs/195.168.3.66 fantomas.fantomas.sk -> /home/webs/fantomas.fantomas.sk -> /home/webs/default.fantomas.sk You can't do that. Yo

Re: [EMAIL PROTECTED] "public_html" for each user don"t work.

2006-06-27 Thread Joshua Slive
On 6/27/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Dear Sir, I used Apache/2.0.52 that come with Fedora Core 3. I want to config "public_html" for each user in file "httpd.conf" but don"t work. I config httpd.conf below. #UserDir disable//Delete this line

[EMAIL PROTECTED] apache 2.2.2 and user right access

2006-06-27 Thread P.M
Hi,i setup apache 2.2.2, PHP 5.1.2 with PostgreSQL 8.1.4 system.i've created some folder "kmt" as alias. therefore when a user will type in his browser my PC_IP_address/kmt, a index.html page should be displayed.however, it does not work.it works on my PC (where apache is installed) as http://local

Re: [EMAIL PROTECTED] THIS IS NOT THE WAY A MAILING LIST DAEMON SHOULD WORK!

2006-06-27 Thread Matus UHLAR - fantomas
On 27.06.06 07:24, Vic Feria wrote: > Isn?t better to have a forum setup for this group rather than an eGroup? I wouldn't say so. Users will still find reasons to blame for, while forums have much lower functionality than properly set up mailing list. -- Matus UHLAR - fantomas, [EMAIL PROTECTED]

Re: [EMAIL PROTECTED] Unsubscriptions issues...

2006-06-27 Thread Matus UHLAR - fantomas
On 26.06.06 14:51, [EMAIL PROTECTED] wrote: >Has anyone had problems unsubscribing from this mailing list? I've sent a >number of messages over the past several months to the prescribed email >address, but there's no effect. > >I've tried emailing Apache, but there's no general-sup

Re: [EMAIL PROTECTED] (again) Can not define "default" name virtual host

2006-06-27 Thread Neil A. Hillard
Hi, Matus UHLAR - fantomas wrote: > On 27.06.06 13:30, Neil A. Hillard wrote: >> I don't understand what the problem is here. I've tested the >> configuration suggested and it works fine (OK, I had to change the IP >> address to match my setup): >> >> >> ServerName 195.168.3.66 >> DocumentRoot

[EMAIL PROTECTED] mod_authn_dbd encrypted password?!

2006-06-27 Thread Chris Liles
Hello list! When setting up mod_authn_dbd to hit a postgresql data base the documentation says that the AuthDBDUserPWQuery must return an encrypted password. Would someone please tell me how I am suppose to crypt the password when storing it in the database. I can get the module to work fine wit

Re: [EMAIL PROTECTED] (again) Can not define "default" name virtual host

2006-06-27 Thread Pid
Matus UHLAR - fantomas wrote: > On 27.06.06 13:30, Neil A. Hillard wrote: >> I don't understand what the problem is here. I've tested the >> configuration suggested and it works fine (OK, I had to change the IP >> address to match my setup): >> >> >> ServerName 195.168.3.66 >> DocumentRoot /h

Re: [EMAIL PROTECTED] (again) Can not define "default" name virtual host

2006-06-27 Thread Matus UHLAR - fantomas
On 27.06.06 13:25, Pid wrote: > The documentation says: > > "ServerName fully-qualified-domain-name[:port]" > > so you might be falling at the first hurdle, because you're not > specifying a FQDN. > > Also: > > "If no ServerName is specified, then the server attempts to deduce the > hostname by

Re: [EMAIL PROTECTED] (again) Can not define "default" name virtual host

2006-06-27 Thread Matus UHLAR - fantomas
On 27.06.06 13:30, Neil A. Hillard wrote: > I don't understand what the problem is here. I've tested the > configuration suggested and it works fine (OK, I had to change the IP > address to match my setup): > > > ServerName 195.168.3.66 > DocumentRoot /home/webs/195.168.3.66 > > > > Server

Re: [EMAIL PROTECTED] "public_html" for each user don"t work.

2006-06-27 Thread Felipe Tocchetto
try use 755 on your home: drwxr-xr-x 18 felipe other 2560 Jun 26 16:21 felipe On 6/27/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Dear Sir, I used Apache/2.0.52 that come with Fedora Core 3. I want to config "public_html" for each user in file "httpd.conf" but don"t work. I con

[EMAIL PROTECTED] ssl error message

2006-06-27 Thread Dave Henderson
Gang, I have been working on this issue over the past few days.  I am trying to get SSL working with Apache 2.0 (Debian 3.0).  I have read through documentation on how to create Root CA's, ssl certificates and keys, etc.  I made a root ca and created a certificate and key for my site. I

Re: [EMAIL PROTECTED] (again) Can not define "default" name virtual host

2006-06-27 Thread Pid
Neil A. Hillard wrote: > Hi, > You have made sure you've got a NameVirtualHost 195.168.3.66:80 set? > > When not supplying a 'Host:' header or supplying the IP address in the > 'Host:' header then Apache responds using the first virtual server but > if the name 'default.fantomas.sk' is used then

[EMAIL PROTECTED] Problems with mod_auth_ldap (again)

2006-06-27 Thread Sobiech, Steffen
Does nobody have a clue? >I've got a slight problem with mod_auth_ldap and authentication against an Active Directory Server via LDAP. > >The authentication basically works. However, if a user not only enters his username in the authentication dialog, but also his domainname (e.g. in the form "MYD

Re: [EMAIL PROTECTED] THIS IS NOT THE WAY A MAILING LIST DAEMON SHOULD WORK!

2006-06-27 Thread Neil A. Hillard
Hi, Mattias Segerdahl wrote: > I signed up for this email and I followed the instructions at the bottom of > the email to unsubscribe. Nothing to it, right? There are two different unsubscription e-mail addresses, dependant upon whether you subscribed to the list or the digest. Try the other one

Re: [EMAIL PROTECTED] (again) Can not define "default" name virtual host

2006-06-27 Thread Neil A. Hillard
Hi, Matus UHLAR - fantomas wrote: > On 26.06.06 11:54, Joshua Slive wrote: >>> LogFormat "%{%s}t %v %V %{Host}o %{Host}i %a %h %>s %b %T %u \"%U\" >>> \"%{Referer}i\" \"%{User-Agent}i\"" testing >>> >>> 1151335141 default.fantomas.sk default.fantomas.sk - default.fantomas.sk >>> 195.168.3.66 fan

Re: [EMAIL PROTECTED] (again) Can not define "default" name virtual host

2006-06-27 Thread Pid
Matus UHLAR - fantomas wrote: >> Your problem here is that the ServerName requires a fully-qualified >> domain name, rather than an IP address. > > I think that ServerName could contain anything that users may request in the > Host: header ;-) Yes, I'd gathered that you think it ought to do som

RE: [EMAIL PROTECTED] THIS IS NOT THE WAY A MAILING LIST DAEMON SHOULD WORK!

2006-06-27 Thread Vic Feria
Isn’t better to have a forum setup for this group rather than an eGroup? -Original Message- From: Mattias Segerdahl [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 27, 2006 6:42 AM To: users@httpd.apache.org Subject: [EMAIL PROTECTED] THIS IS NOT THE WAY A MAILING LIST DAEMON SHOULD WORK!

Re: [EMAIL PROTECTED] (again) Can not define "default" name virtual host

2006-06-27 Thread Matus UHLAR - fantomas
> > In this case, no requests will reach "default.fantomas.sk" (this name does > > not exist) because 195.168.3.66 will be default host. And the thing is I > > want to differentiate between those... On 27.06.06 13:06, Pid wrote: > So you want to return default.fantomas.sk in all cases where the IP

Re: [EMAIL PROTECTED] (again) Can not define "default" name virtual host

2006-06-27 Thread Pid
Matus UHLAR - fantomas wrote: >>> afaik the server does not resolve IP's to hosts here (do you have other >>> informations?) >> >> >> ServerName 195.168.3.66 >> DocumentRoot /home/webs/195.168.3.66 >> >> >> >> ServerName default.fantomas.sk >> DocumentRoot /home/webs/default.fantomas.sk >> >

RE: [EMAIL PROTECTED] THIS IS NOT THE WAY A MAILING LIST DAEMON SHOULD WORK!

2006-06-27 Thread Mattias Segerdahl
I signed up for this email and I followed the instructions at the bottom of the email to unsubscribe. Nothing to it, right? -Original Message- From: Jaqui Greenlees [mailto:[EMAIL PROTECTED] Sent: den 27 juni 2006 14:04 To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] THIS IS NOT

Re: [EMAIL PROTECTED] (again) Can not define "default" name virtual host

2006-06-27 Thread Matus UHLAR - fantomas
On 26.06.06 11:54, Joshua Slive wrote: > >LogFormat "%{%s}t %v %V %{Host}o %{Host}i %a %h %>s %b %T %u \"%U\" > >\"%{Referer}i\" \"%{User-Agent}i\"" testing > > > >1151335141 default.fantomas.sk default.fantomas.sk - default.fantomas.sk > >195.168.3.66 fantomas.fantomas.sk 200 20 4 - "/" "-" "-"

Re: [EMAIL PROTECTED] THIS IS NOT THE WAY A MAILING LIST DAEMON SHOULD WORK!

2006-06-27 Thread Jaqui Greenlees
--- Mattias Segerdahl <[EMAIL PROTECTED]> wrote: > You know what, now I do understand the last couple > of days spamming on the > list. And the spam is just the reason why I don't > want to have nothing to do > with this list no more. The mailing list daemon is > really foobar'd.. > > Remove me

[EMAIL PROTECTED] "public_html" for each user don"t work.

2006-06-27 Thread rsomsak123
Dear Sir, I used Apache/2.0.52 that come with Fedora Core 3. I want to config "public_html" for each user in file "httpd.conf" but don"t work. I config httpd.conf below. #UserDir disable//Delete this line UserDir public_html When used IE it has error messa

Re: [EMAIL PROTECTED] (again) Can not define "default" name virtual host

2006-06-27 Thread Matus UHLAR - fantomas
> > afaik the server does not resolve IP's to hosts here (do you have other > > informations?) On 27.06.06 10:22, Pid wrote: > I didn't say anything about *DNS* resolution. Aha, sorry. I understand what you've meant. > > requests for "195.168.3.66" should go to virtualhost "195.168.3.66" if they

[EMAIL PROTECTED] THIS IS NOT THE WAY A MAILING LIST DAEMON SHOULD WORK!

2006-06-27 Thread Mattias Segerdahl
You know what, now I do understand the last couple of days spamming on the list. And the spam is just the reason why I don't want to have nothing to do with this list no more. The mailing list daemon is really foobar'd.. Remove me from the list, and fix the daemon. -Original Message- From

[EMAIL PROTECTED] Apache 2.2.2 Compilation error: event.c:1437: undefined reference to `ap_thread_stacksize'

2006-06-27 Thread AGS Lab
Hello, im using FreeBSD 6.1 and want to try threading MPMs. I runned configure with these options: ./configure --prefix=/www/apache --enable-cache=shared --enable-rewrite=shared --enable-mem-cache=shared --with-mpm=event --enable-nonportable-atomics=yes --enable-threads. I also tried worker mpm. P

Re: [EMAIL PROTECTED] (again) Can not define "default" name virtual host

2006-06-27 Thread Pid
Matus UHLAR - fantomas wrote: > On 27.06.06 09:34, Pid wrote: >> Matus UHLAR - fantomas wrote: >>> On 26.06.06 16:45, Pid wrote: It maps there because it's the first in the list. >>> Pardon? My problem is that request for "195.168.3.66" goes to >>> "default.fantomas.sk" although "195.168.3.6

Re: [EMAIL PROTECTED] (again) Can not define "default" name virtual host

2006-06-27 Thread Matus UHLAR - fantomas
On 27.06.06 09:34, Pid wrote: > Matus UHLAR - fantomas wrote: > > On 26.06.06 16:45, Pid wrote: > >> It maps there because it's the first in the list. > > > > Pardon? My problem is that request for "195.168.3.66" goes to > > "default.fantomas.sk" although "195.168.3.66" has its own virtual host. >

Re: [EMAIL PROTECTED] Mod_Dav WindowsXP client

2006-06-27 Thread Rainer Sokoll
On Mon, Jun 26, 2006 at 02:14:05PM -0700, Chris Toledo wrote: > I have had little problem enabling WebDav on Apache and works great > connecting from Windows XP without authentication. I can open and edit > files freely. Whenever I turn on authentication I can no longer connect > via Windows XP (I

[EMAIL PROTECTED] Problem unsubscribing

2006-06-27 Thread Mattias Segerdahl
Now it's my turn to have problems unsubscribing from the list. I decided to unsubscribe because of the massive amounts of flaming the list has received lately. Now, unsubscribing in itself wasn't a problem, got a response telling me that I was unsubscribed from the list and all. But I'm still get

Re: [EMAIL PROTECTED] (again) Can not define "default" name virtual host

2006-06-27 Thread Pid
Matus UHLAR - fantomas wrote: > On 26.06.06 16:45, Pid wrote: >> It maps there because it's the first in the list. > > Pardon? My problem is that request for "195.168.3.66" goes to > "default.fantomas.sk" although "195.168.3.66" has its own virtual host. Yes, I was quite clear on that and I thi

Re: [EMAIL PROTECTED] (again) Can not define "default" name virtual host

2006-06-27 Thread Matus UHLAR - fantomas
On 26.06.06 16:45, Pid wrote: > It maps there because it's the first in the list. Pardon? My problem is that request for "195.168.3.66" goes to "default.fantomas.sk" although "195.168.3.66" has its own virtual host. > If you want a VH to operate under the IP only, put it first. Pardon? I want on