Re: HTTPS environment variable is set after .htacces is parsed

2003-03-10 Thread Cliff Woolley
On Mon, 10 Mar 2003, Domenico Andreoli wrote: > > order deny,allow > > deny from all > > allow from 127.0.0.1 > > SSLRequireSSL > > after some thinking at it, i see you answer is not suitable for my > needs. indeed, your mandates the use of SSL, while mine allowed access > from localhost *or* SSL.

Re: HTTPS environment variable is set after .htacces is parsed

2003-03-10 Thread Domenico Andreoli
On Sat, Mar 01, 2003 at 11:02:22AM -0500, Cliff Woolley wrote: > On Sat, 1 Mar 2003, Domenico Andreoli wrote: > > > order deny,allow > > deny from all > > allow from 127.0.0.1 > > allow from env=HTTPS > > Why do you need that env var? Use this instead: > > > order deny,allow > deny from all >

Re: HTTPS environment variable is set after .htacces is parsed

2003-03-01 Thread Domenico Andreoli
On Sat, Mar 01, 2003 at 11:16:11AM -0500, Cliff Woolley wrote: > On Sat, 1 Mar 2003, Domenico Andreoli wrote: > > > dunno, bug submitter used it. shouldn't it work anyway? > > Environment variables are, as a rule, set late in the process because the > use of them has a relatively large performanc

Re: HTTPS environment variable is set after .htacces is parsed

2003-03-01 Thread Cliff Woolley
On Sat, 1 Mar 2003, Domenico Andreoli wrote: > dunno, bug submitter used it. shouldn't it work anyway? Environment variables are, as a rule, set late in the process because the use of them has a relatively large performance penalty. They're really only there for communicating with CGI scripts an

Re: HTTPS environment variable is set after .htacces is parsed

2003-03-01 Thread Domenico Andreoli
On Sat, Mar 01, 2003 at 11:02:22AM -0500, Cliff Woolley wrote: > On Sat, 1 Mar 2003, Domenico Andreoli wrote: > > > order deny,allow > > deny from all > > allow from 127.0.0.1 > > allow from env=HTTPS > > Why do you need that env var? Use this instead: dunno, bug submitter used it. shouldn't it

Re: HTTPS environment variable is set after .htacces is parsed

2003-03-01 Thread Cliff Woolley
On Sat, 1 Mar 2003, Domenico Andreoli wrote: > order deny,allow > deny from all > allow from 127.0.0.1 > allow from env=HTTPS Why do you need that env var? Use this instead: order deny,allow deny from all allow from 127.0.0.1 SSLRequireSSL --Cliff

HTTPS environment variable is set after .htacces is parsed

2003-03-01 Thread Domenico Andreoli
hi again, with reference to debian bug report #103609 [1], a debian user states that HTTPS environment variable is still not set during the parsinig of .htacces. i'm quoting the relevant part from that report. - CUT HERE --- This ought to work in .htaccess: order deny,a