[EMAIL PROTECTED] Writing to a directory

2006-11-29 Thread Meir Hazon
Hello All, I use Apache 2.0 in order to access remote directories over the web. Using a web browser it is possible to read and download files from the shown directories but I'm unable to write to any of the directories, I have checked all the operating system permissions (RedHat SE 4.3) and they

RE: [EMAIL PROTECTED] rewrite + ssl

2006-11-29 Thread Boyle Owen
> -Original Message- > From: news [mailto:[EMAIL PROTECTED] On Behalf Of Georges Villot > Sent: Wednesday, November 29, 2006 5:50 PM > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] rewrite + ssl > > Hi, > > I'm trying to rewrite all HTTP calls to HTTPS, except for the default >

RE: [EMAIL PROTECTED] Limiting COPY method for WebDAV to one direction

2006-11-29 Thread Mark Lavi
You know, the more I think about this, the more I think you could try to get closer to implement what you want. The example below uses LimitExcept, I think you could further restrict it by the WebDAV properties...yes, it looks like you can as described by the HTTP methods listed for LIMIT: http

Re: [EMAIL PROTECTED] Require ldap-group directive issue in Apache 2.2

2006-11-29 Thread Eric Covener
On 11/7/06, Christophe Gravier <[EMAIL PROTECTED]> wrote: Hello, Nobody is using ldap based authentication and authorization, based on group ? Your configuration looks identical to mine, except my group memberships are based on 'member' instead of 'uniquemember' -- but they're the 2 values tri

Re: [EMAIL PROTECTED] Apache configuration on Fedora 5

2006-11-29 Thread Rick Havlak
Thanks Joshua for the hints. The images had their security context set wrong. Still not sure what the problem was with my index.html, but after rebooting my server this morning it works normally. Just to be sure I checked the HTTP response headers and content type was text/html as expected. Th

Re: [EMAIL PROTECTED] 2 vhosts with same file names - Apache only uses one file

2006-11-29 Thread Joshua Slive
On 11/29/06, Earl, Robert(IT) <[EMAIL PROTECTED]> wrote: I have seen the following problem with apache using both mod_perl and php. I would really like to know how to resolve this. If anyone can help, that would be great. I have 2 vhosts with different document roots. There are files in e

[EMAIL PROTECTED] 2 vhosts with same file names - Apache only uses one file

2006-11-29 Thread Earl, Robert\(IT\)
I have seen the following problem with apache using both mod_perl and php. I would really like to know how to resolve this. If anyone can help, that would be great. I have 2 vhosts with different document roots. There are files in each with the same name, but different content. It seems apach

RE: [EMAIL PROTECTED] Limiting COPY method for WebDAV to one direction

2006-11-29 Thread Todd Hivnor
Mark, thank for the clues. I guess I will need to tinker with OS-level file permissions to solve this. I was hoping for a pure-Apache solution, and am a bit disappointed with the granularity of control over COPY operations. But I can work around the issue using file level permissions. Thanks f

Re: [EMAIL PROTECTED] Failed downloads: "Could not get next bucket brigade"

2006-11-29 Thread Todd Hivnor
I am using WebDAV. The user has had trouble using a normal web browser, as well as connecting via WebDAV with Windows Explorer. I added " EnabledSendfile Off " to my config, and the user was able to download some files which were previously causing problems. So I've got my fingers crossed ...

Re: [EMAIL PROTECTED] Selectively forward trafic from Apache to Tomcat

2006-11-29 Thread Gregor Schneider
Forgive me, I was mixing up 2 threads, sorry 4 that. Maybe it's time to call it a day. Sorry again Greg -- what's puzzlin' you, is the nature of my game - The official User-To-User support forum of the Apache HTTP Server Proje

[EMAIL PROTECTED] rewrite + ssl

2006-11-29 Thread Georges Villot
Hi, I'm trying to rewrite all HTTP calls to HTTPS, except for the default page. So I wrote in the apache config: RewriteCond %{SERVER_PORT} !^443$ RewriteRule ^/$ - [S=1] RewriteRule ^/(.*) https://%{SERVER_NAME}/$1 [L,R] it works, except that the SSL certificate is sent anyway, what I would

Re: [EMAIL PROTECTED] Selectively forward trafic from Apache to Tomcat

2006-11-29 Thread Gregor Schneider
Forgot to mention that Ian asked in the Tomcat-userlist if he could run both on the same port (check for the post "Can Apache and Tomcat both be configured in port 80?") Sorry, forgot to mention that Greg -- what's puzzlin' you, is the nature of my game -

Re: [EMAIL PROTECTED] Selectively forward trafic from Apache to Tomcat

2006-11-29 Thread Gregor Schneider
This wont work. Ian asked if both (Apache & Tomcat) could be configured to listen on the same port, and the anser here is definately a NO. What you can do is use the connector JK 1.2, run Apache in front, Tomcat on port i.e. 8009. JK then will forward the specified requests to Tomcat, similar to

Re: [EMAIL PROTECTED] Selectively forward trafic from Apache to Tomcat

2006-11-29 Thread toadie D
I think you could do that via mod_rewrite RewriteRule ^/project/(.*)/dynamic/(.*) http://tomcat/project/$1/dynamic/$2 [proxy,last] RewriteRule ^/project/(.*) http://apache/project/$1 [passthrough,last] You also need to define a Requests like this: http://localhost/project/com/project

Re: [EMAIL PROTECTED] Selectively forward trafic from Apache to Tomcat

2006-11-29 Thread Gregor Schneider
http://tomcat.apache.org/connectors-doc/ cheers Greg -- what's puzzlin' you, is the nature of my game - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for

Re: [EMAIL PROTECTED] apache client authentication problem (somewhat long)

2006-11-29 Thread Kenneth Svee
[ Bill Tangren ] > Serge Dubrouski wrote: >> Your client submits certificate signed by CA which certificate you >> don't have in your SSLCACertificatePath. Actually it looks like you >> incorrectly configured it. You have: >> SSLCACertificateFile /etc/httpd/conf/ssl.crt/root.crt >> SSLCACertificat

[EMAIL PROTECTED] Apache mod_rewrite and 301 redirection

2006-11-29 Thread Norman Khine
Hello, I am using a ZOPE server behind Apache and already have a mod_rewrite rule as: ServerName mysite.com ServerAlias www.mysite.com RewriteEngine On RewriteRule ^/(.*) http://mysite.com:5080/VirtualHostBase/http/mysite.com:80/sites/site/VirtualHostRoot/$1 [L,P] ErrorLog /var/log/apac

[EMAIL PROTECTED] Apache AuthDBI cache

2006-11-29 Thread Jones Scott - sjones
I need a way to flush the cache that is held by AuthDBI. Has anybody done this? And how? Thanks * The information contained in this communication is confidential, is intended only for the use of the recipient named above

Re: [EMAIL PROTECTED] Apache 2.2.3 and SUDO

2006-11-29 Thread Dave Templeton
Yvo, I have not been in the habit of using apachectl but starting httpd directly. I will try this how ever and thanks for the idea. Dave. On 11/28/06, Yvo van Doorn <[EMAIL PROTECTED]> wrote: You can just edit the apachectl script and add this: LD_LIBRARY_PATH="/path/to/libraries" export

[EMAIL PROTECTED] Apache Mod Service issue

2006-11-29 Thread Harvey MacKenzie
System Info OS: Mac OS X Server 10.3.9 (7W98) CPU: 1 x 2 GHz Memory: 1024 MB (2 x ECC and 2 X non-ECC) BootROM: 5.1.7f1 java version "1.4.2_09" Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_09-233) Java HotSpot(TM) Client VM (build 1.4.2-56, mixed mode) Server

[EMAIL PROTECTED] Selectively forward trafic from Apache to Tomcat

2006-11-29 Thread Ian Coal
Hi all, Trafic from a rich client consists of requests for static ressources like *.png and requests for dynamicaly generated templates. Requests like this: http://localhost/project/com/project/imgs*.png would retrieve the files from the filesystem where apache runs and http

Re: [EMAIL PROTECTED] Apache configuration on Fedora 5

2006-11-29 Thread Joshua Slive
On 11/29/06, Rick Havlak <[EMAIL PROTECTED]> wrote: I'm trying to configure Apache 2.2.2 on Fedora Core 5. I've been getting unexpected behavior for HTML files and images (.jpg and .gif) when viewed in Mozilla 1.5.0.1. I'm connected on static IP to a netgear Router First symptom I'm experienci

RE: [EMAIL PROTECTED] reverseProxy & name based virtual host

2006-11-29 Thread Boyle Owen
> -Original Message- > From: Alessandro Ilardo [mailto:[EMAIL PROTECTED] > Sent: Wednesday, November 29, 2006 2:08 PM > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] reverseProxy & name based virtual host > > Hello there, > I'm trying to set up my Apache 2 as Reverse proxy. But

Re: [EMAIL PROTECTED] memory comsumption in Apache

2006-11-29 Thread Joshua Slive
On 11/29/06, Xuekun Hu <[EMAIL PROTECTED]> wrote: hi, I'm trying to predict how many memory should be used with Apache2.2.3 (worker) + Linux2.6.x. This setup is only serving static content, and trying to serve 1 simultaneous users (about 1 connections,500 simultaneous requests at the sam

[EMAIL PROTECTED] reverseProxy & name based virtual host

2006-11-29 Thread Alessandro Ilardo
Hello there, I'm trying to set up my Apache 2 as Reverse proxy. But something is wrong in the configuration file: Listen 80 ServerName linux_1.primaryDomain.com ProxyRequests Off Order deny,allow Allow from all ProxyVia On NameVirtualHost *:80 # Default Virtual Host ServerName lin

[EMAIL PROTECTED] Apache configuration on Fedora 5

2006-11-29 Thread Rick Havlak
I'm trying to configure Apache 2.2.2 on Fedora Core 5. I've been getting unexpected behavior for HTML files and images (.jpg and .gif) when viewed in Mozilla 1.5.0.1. I'm connected on static IP to a netgear Router First symptom I'm experiencing is that HTML files bring up a dialog asking whethe