Re: [users@httpd] Require directives

2018-04-17 Thread Eric Covener
Whoops, spent too much time as a draft On Tue, Apr 17, 2018 at 11:45 AM, Eric Covener wrote: > On Tue, Apr 17, 2018 at 10:27 AM, Robert Schweikert wrote: >> Hi, >> >> Configuration question. >> >> Apache version 2.4.23 >> >> What I am trying to do is have users authenticate but only allow access

Re: [users@httpd] Require directives

2018-04-17 Thread Eric Covener
On Tue, Apr 17, 2018 at 10:27 AM, Robert Schweikert wrote: > Hi, > > Configuration question. > > Apache version 2.4.23 > > What I am trying to do is have users authenticate but only allow access > to that authentication method from known IP ranges. To this effect I > have a config file that sets:

Re: [users@httpd] Require directives

2018-04-17 Thread Robert Schweikert
On 04/17/2018 10:39 AM, Luca Toscano wrote: > Hi Robert, > > 2018-04-17 16:27 GMT+02:00 Robert Schweikert : > >> Hi, >> >> Configuration question. >> >> Apache version 2.4.23 >> >> What I am trying to do is have users authenticate but only allow access >> to that authentication method from known

Re: [users@httpd] Require directives

2018-04-17 Thread Luca Toscano
Hi Robert, 2018-04-17 16:27 GMT+02:00 Robert Schweikert : > Hi, > > Configuration question. > > Apache version 2.4.23 > > What I am trying to do is have users authenticate but only allow access > to that authentication method from known IP ranges. To this effect I > have a config file that sets:

[users@httpd] Require directives

2018-04-17 Thread Robert Schweikert
Hi, Configuration question. Apache version 2.4.23 What I am trying to do is have users authenticate but only allow access to that authentication method from known IP ranges. To this effect I have a config file that sets: Options +Indexes +FollowSymLinks IndexOptions +NameWidth=

Re: [users@httpd] Domain level subdirectories needed

2018-04-17 Thread Eric Covener
There's a lot of overlapping, partial, and unnecessary config here including nginx config. If you want to proxy /group1 somewhere, all it takes is the absolute basics from the manual e.g. ProxyPass /group Have you tried it without all the extraneous stuff? What happened? What did the logs say?

[users@httpd] Re: Domain level subdirectories needed

2018-04-17 Thread Pankaj Singh
Currently the requests are not passing through, hence would request your help on this. Please suggest. Thanks Pankaj On Tue, Apr 17, 2018 at 5:09 PM, Pankaj Singh wrote: > Hi Team, > > We need to append multiple subdirectories and the content should be serve > from some other container where w

[users@httpd] Domain level subdirectories needed

2018-04-17 Thread Pankaj Singh
Hi Team, We need to append multiple subdirectories and the content should be serve from some other container where we proxied the request. Order deny,allow Allow from all RewriteEngine On RewriteRule ^(.*)$ https://domain.example.com [R=301,L] Se