[us...@httpd] SSL redirect ?

2010-11-04 Thread Brent Clark
Hiya I got an interesting request from a client and I was hoping to bounce this off you guys. I need my linux server to accept incoming c

[us...@httpd] prevent Indexes by group

2010-11-04 Thread Andrew Simpson
Greetings, I am trying to prevent certain users from directory Indexes. What is the best way to limit functionality in a directory by group? Thanks for any help, Drew - The official User-To-User support forum of the Apache HTTP

[us...@httpd] rewritecond group

2010-11-04 Thread Andrew Simpson
Greetings, Is there any way to refer to the currently authenticated user's group(s) from within a rewritecond? Thanks, Drew - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org

Re: [us...@httpd] rewritecond group

2010-11-04 Thread Rich Bowen
On Nov 4, 2010, at 9:45 AM, Andrew Simpson wrote: Greetings, Is there any way to refer to the currently authenticated user's group(s) from within a rewritecond? No. There is not an ENV var set for the group in which the user is authenticated, so this is not accessible to mod_rewrite. Add

[us...@httpd] Not serving virtual domain with copied .conf and .db files

2010-11-04 Thread Norman Fournier
Hello, I am hosting a number of virtual domains but having a problem getting them online. Once I have a working .conf and .db file for a domain, with files located in the same directory as the next domain on my list, I copy them and edit the .conf and .db file contents for the next domain, but

Re: [us...@httpd] SSL redirect ?

2010-11-04 Thread Joost de Heer
On 11/04/2010 11:56 AM, Brent Clark wrote: Hiya I got an interesting request from a client and I was hoping to bounce this off you guys.

Re: [us...@httpd] SSL redirect ?

2010-11-04 Thread Brent Clark
On 04/11/2010 18:25, Joost de Heer wrote: Yes, you need ProxyPass/ProxyPassReverse and SSLProxyEngine. Joost And for the idiot and curiosity in me. I take it this is not possible on separate machines? Thanks for replying. Brent -

Re: [us...@httpd] SSL redirect ?

2010-11-04 Thread Tom Evans
On Thu, Nov 4, 2010 at 10:56 AM, Brent Clark wrote: > Hiya > > I got an interesting request from a client and I was hoping to bounce this > off you guys. > >

[us...@httpd] WebDav PUT fails with 500 response

2010-11-04 Thread Paul Simon
Hi All, I'm hoping somebody might guide me in the right direction. A php script is using the CURL extension to put files to a webdav server. It has been working successfully, putting a couple hundred files in the last few months. However, recently there's a file that fails to be PUT and is causing

Re: [us...@httpd] Re: LimitRequestBody http return code

2010-11-04 Thread Mohit Anchlia
On Sun, Oct 31, 2010 at 6:02 PM, Eric Covener wrote: > On Sun, Oct 31, 2010 at 8:09 PM, Mohit Anchlia wrote: >> On Wed, Sep 8, 2010 at 2:23 PM, Mohit Anchlia wrote: >>> I am trying to test LimitRequestBody. It looks like it always returns >>> Http code 500. Is this as expected?  I thought it's s

Re: [us...@httpd] Re: LimitRequestBody http return code

2010-11-04 Thread Eric Covener
On Thu, Nov 4, 2010 at 6:38 PM, Mohit Anchlia wrote: > On Sun, Oct 31, 2010 at 6:02 PM, Eric Covener wrote: >> On Sun, Oct 31, 2010 at 8:09 PM, Mohit Anchlia >> wrote: >>> On Wed, Sep 8, 2010 at 2:23 PM, Mohit Anchlia >>> wrote: I am trying to test LimitRequestBody. It looks like it alwa

Re: [us...@httpd] Re: LimitRequestBody http return code

2010-11-04 Thread Mohit Anchlia
On Thu, Nov 4, 2010 at 3:40 PM, Eric Covener wrote: > On Thu, Nov 4, 2010 at 6:38 PM, Mohit Anchlia wrote: >> On Sun, Oct 31, 2010 at 6:02 PM, Eric Covener wrote: >>> On Sun, Oct 31, 2010 at 8:09 PM, Mohit Anchlia >>> wrote: On Wed, Sep 8, 2010 at 2:23 PM, Mohit Anchlia wrote:

Re: [us...@httpd] Apache2, MySQL and mod_dbd

2010-11-04 Thread Sheryl
Niklas wrote: > I want to use Apache2's built in functionality to authenticate and > authorize user for accessing certain pages, mod_dbd. I want to store the > users in MySQL. > > How should I set up this? I have tried a lot of things and it seems to be > really hard getting it to work. As I under

[us...@httpd] Forcing custom 404 error page instead of autoindex

2010-11-04 Thread Dennis Jacobfeuerborn
Hi, I'm trying to find a way to always generate a 404 error using htaccess when a directory is accessed and with mod_autoindex enabled. That is when I access http://server/directory/ I want to get a 404 error instead of an auto generated index. I tried doing this with a RewriteRule but the aut

Re: [us...@httpd] Forcing custom 404 error page instead of autoindex

2010-11-04 Thread Igor Cicimov
Post the rewrite rule here. Igor On Nov 5, 2010 1:11 PM, "Dennis Jacobfeuerborn" wrote: Hi, I'm trying to find a way to always generate a 404 error using htaccess when a directory is accessed and with mod_autoindex enabled. That is when I access http://server/directory/ I want to get a 404 erro

Re: [us...@httpd] Forcing custom 404 error page instead of autoindex

2010-11-04 Thread Dennis Jacobfeuerborn
ErrorDocument 404 /_disabled/index.html RewriteEngine on RewriteRule !/_disabled/ /_force_404_ The idea was to use the rewrite rule to rewrite any access to a non-existing page and then have the ErrorDocument directive catch that but instead of a custom error page I only get the default message

Re: [us...@httpd] Forcing custom 404 error page instead of autoindex

2010-11-04 Thread Eric Covener
On Thu, Nov 4, 2010 at 10:45 PM, Dennis Jacobfeuerborn wrote: > ErrorDocument 404 /_disabled/index.html > RewriteEngine on > RewriteRule !/_disabled/ /_force_404_ > > The idea was to use the rewrite rule to rewrite any access to a non-existing > page and then have the ErrorDocument directive catch