[users@httpd] apache ldap authentication: groups with spaces and negation in ldap-filter

2020-04-04 Thread Vieri Di Paola
Hi, I'm running Apache HTTP on a Linux server and authenticating via LDAP with an Active Directory server. I've encountered two difficulties. 1) I can't seem to allow access for members of a group which name contains spaces. My config lines are: AuthLDAPBindDN "CN=ldapbind,CN=Users

[users@httpd] require ip ipset

2020-01-21 Thread Vieri Di Paola
Hi, I was wondering if it is complicated to implement ipset support for the Require directive. Something like Require ip (where the ipset can be of types hash:ip, hash:net or bitmap:ip). Vieri - To unsubscribe, e-mail: users-un

[users@httpd] Request Methods GET and POST through Reverse Proxy

2020-01-14 Thread Vieri Di Paola
Hi, On my client browser I see that POST requests are properly sent when using this reverse proxy configuration: TraceEnable off ProxyRequests Off ProxyPass / http://backend:8080/ ProxyPassReverse / http://backend:8080/ ProxyPreserveHost On Request URL: ht

Re: [users@httpd] reverse proxy and path

2020-01-14 Thread Vieri Di Paola
> RewriteRule ^/2/(.*)$ https://my_reverse_proxy/rp/1/2/$1 > > So: > 1) why do I need to specify an absolute URL? > 2) is there a variable name I could use instead of my_reverse_proxy? To answer 2) myself: %{SERVER_NAME}. I still haven't figured out 1) though.

Re: [users@httpd] reverse proxy and path

2020-01-14 Thread Vieri Di Paola
On Tue, Jan 14, 2020 at 12:05 PM Vieri Di Paola wrote: > The client browser tries to connect to > > https://my_apache_reverse_proxy/2/css/bootstrap.12pt.css > > instead of > > https://my_apache_reverse_proxy/rp/1/2/css/bootstrap.12pt.css (typo corrected) > or > https:/

Re: [users@httpd] reverse proxy and path

2020-01-14 Thread Vieri Di Paola
On Tue, Jan 14, 2020 at 11:48 AM Colin 't Hart wrote: > > Looks like you have a transposition typo in your rewrite rule. Thanks for seeing that typo. I fixed it, but in any case that wasn't it because there is no match on that rewrite rule. The client browser tries to connect to https://my_apac

[users@httpd] reverse proxy and path

2020-01-14 Thread Vieri Di Paola
Hi, I can successfully access a backend server through directives like these: ProxyPass / http://192.168.250.1:8080/ ProxyPassReverse / http://192.168.250.1:8080/ However, I'm having trouble if I use this other configuration: ProxyPass /rp/1/ http://192.168.250.1:8080/

[EMAIL PROTECTED] access control and .htaccess

2005-09-14 Thread Vieri Di Paola
Hi, I'm using Gentoo 2005.0 and Apache 2 with -D DAV -D DAV_FS. WebDAV is working but there are still things I don't master as far as access control is concerned. My Apache2 httpd is using vhosts from dynamic-vhosts.conf. In the latter file I added: DAVlockDB /path/to/lock/file DAV On Options Al