[users@httpd] Can't contact LDAP server

2018-01-23 Thread Helmut Schneider
Hello all, I'm doing SSO using auth_kerb_module with Active Directory and authnz_ldap_module as fallback (Apache 2.4, FreeBSD 11.1, Windows Server 2012R2): PassEnv MACHINE_DNSNAME PassEnv MACHINE_DOMAINNAME_UPPER LoadFile /usr/lib/libgssapi_krb5.so.10 LoadFile /usr/lib/libgssap

Re: [users@httpd] ldap-status and

2018-01-17 Thread Helmut Schneider
On Wed, Jan 17, 2018 at 12:11 PM, Helmut Schneider wrote: Hello all, I have the following snippet: SetHandler ldap-status This does not work, /ldap-status is not found. If I change to e.g. it does. Why? It just doesn't have an intuitive source file

[users@httpd] ldap-status and

2018-01-17 Thread Helmut Schneider
Hello all, I have the following snippet: SetHandler ldap-status This does not work, /ldap-status is not found. If I change to e.g. it does. Why? Thank you! [helmut@BSDHelmut ~]$ apachectl -t -D DUMP_MODULES | grep -i ldap authnz_ldap_module (shared) ldap_mo

[users@httpd] mod_proxy, ProxyPreserveHost, multiple host headers, mod_rewrite

2012-09-18 Thread Helmut Schneider
Hi, I want to use apache as proxy for multiple web sites. So far, so good: ProxyPass /app2 http://app2/ ProxyPassReverse /app2 http://app2/ ProxyPass / http://app1/ ProxyPassReverse / http://app1/ The problem is that "app1" needs "ProxyPreserveHost on" while app2 needs it "off". I found http://

[users@httpd] Re: MaxClients 256 but server-status show 1024 slots

2012-01-15 Thread Helmut Schneider
Jeroen Geilman wrote: > On 01/15/2012 08:13 PM, Helmut Schneider wrote: > > Jeroen Geilman wrote: > > > > > On 01/15/2012 08:01 PM, Helmut Schneider wrote: > > > > Jeroen Geilman wrote: > > > > > > > > > On 01/15/2012 07:31 PM, H

[users@httpd] Re: MaxClients 256 but server-status show 1024 slots

2012-01-15 Thread Helmut Schneider
Jeroen Geilman wrote: > On 01/15/2012 08:01 PM, Helmut Schneider wrote: > > Jeroen Geilman wrote: > > > > > On 01/15/2012 07:31 PM, Helmut Schneider wrote: > > [...] > > > > So the highest value configured is 256 (setting at > > > > serv

[users@httpd] Re: MaxClients 256 but server-status show 1024 slots

2012-01-15 Thread Helmut Schneider
Jeroen Geilman wrote: > On 01/15/2012 07:31 PM, Helmut Schneider wrote: [...] > > So the highest value configured is 256 (setting at server.conf.local > > overwrite defaults at apache2.conf). But /server-status shows: [...] > > That's 1024 slots. And yes, I stopped and

[users@httpd] MaxClients 256 but server-status show 1024 slots

2012-01-15 Thread Helmut Schneider
Hi, u1dd_hr@desoggw04:~$ sudo grep -ir MaxClients /etc/apache2/ /etc/apache2/apache2.conf:MaxClients 150 /etc/apache2/apache2.conf:MaxClients 150 /etc/apache2/apache2.conf:MaxClients 150 /etc/apache2/Includes/server.conf.local:MaxClients 256 /etc/apac

[users@httpd] Re: IfModule *rewrite*

2011-12-09 Thread Helmut Schneider
Eric Covener wrote: > The logging in mod_rewrite is inherited from the base server config to > a virtualhost (which your test requests are mapped to) the same way as > rules and conditions, with RewriteOptions +Inherit specified only. Thanks (to all), works now.

[users@httpd] Re: IfModule *rewrite*

2011-12-08 Thread Helmut Schneider
Mark Montague wrote: > On December 8, 2011 5:56 , "Helmut Schneider" wrote: > > Do I also need to configure RewriteLog within the VHOST?! Is that > > also a "Rewrite configuration"?! Because only setting > > RewriteEngine On does not write a logfi

[users@httpd] Re: IfModule *rewrite*

2011-12-08 Thread Helmut Schneider
Mark Montague wrote: > On December 7, 2011 16:26 , "Helmut Schneider" > wrote: > > I put the following lines into my apache.conf (outside, before a > > VHOST definition): > > > > > > RewriteEngine on > > RewriteLog /va

[users@httpd] IfModule *rewrite*

2011-12-07 Thread Helmut Schneider
Hi, I put the following lines into my apache.conf (outside, before a VHOST definition): RewriteEngine on RewriteLog /var/www/logs/rewrite.log RewriteLogLevel 2 (I also tried mod_rewrite and rewrite_module) Unfortunatly it seems it does not work. But if I define the sa

[users@httpd] Re: Server default vhost

2011-11-04 Thread Helmut Schneider
; Once you have your Virtualhosts setup, the first one becomes the > > > default for any requests which do not match the > > > ServerName/ServerAlias in any other Virtualhost. > > On 04.11.11 08:09, Helmut Schneider wrote: > > But - both www.domain.tld and 192.168.0.1

[users@httpd] Re: Server default vhost

2011-11-04 Thread Helmut Schneider
Steve Swift wrote: > > let's say I have a webserver named www.domain.tld at IP 192.168.0.1. > > That server serves http://www.domain.tld. > > > > Now I want to have another VHOST serving http://192.168.0.1 (the > > DEFAULT VHOST e.g. to serve /server-status because > > http://www.domain.tld requi

[users@httpd] Server default vhost

2011-11-03 Thread Helmut Schneider
Hi, let's say I have a webserver named www.domain.tld at IP 192.168.0.1. That server serves http://www.domain.tld. Now I want to have another VHOST serving http://192.168.0.1 (the DEFAULT VHOST e.g. to serve /server-status because http://www.domain.tld requires authentication). How would I do so

[users@httpd] Re: ProxyPass per IP/Net

2011-09-08 Thread Helmut Schneider
Mario A. del Riego wrote: > El 08/09/11 13:59, Helmut Schneider escribió: > > is it possible to serve certain resources by IP/Net? Like bind's > > views[1]? I'm ProxyPass'ing content and would like to serve > > different content for external and internal user

[users@httpd] ProxyPass per IP/Net

2011-09-08 Thread Helmut Schneider
Hi, is it possible to serve certain resources by IP/Net? Like bind's views[1]? I'm ProxyPass'ing content and would like to serve different content for external and internal users. Currently I'm unable to solve the "problem" on the proxied apache. Thanks, Helmut [1] http://www.oreillynet.com/pub/

[us...@httpd] Outlook Webaccess and 2.2.x

2009-06-15 Thread Helmut Schneider
Hi, I used 2.0 in the past to reverse proxy Outlook Webaccess (plain, no RPC-over-HTTP). This worked fine, I did not use any rewrite rules but only "ProxyPreserveHost On" (see also e.g. http://3cx.org/item/46). Now with 2.2 this does not work anymore, mod_proxy always returns the internal na

[EMAIL PROTECTED] Re: Re: Apache 2.0.55/win32 + OpenSSL 0.9.8a & OWA Reverse Proxy Problems

2005-10-26 Thread Helmut Schneider
Manuel Martin ([EMAIL PROTECTED]) wrote: http://issues.apache.org/bugzilla/attachment.cgi?id=16744 works fine. indeed, I recommend it. Thanks for that hint! I assume it will be part of 2.0.56 or .57. http://issues.apache.org/bugzilla/show_bug.cgi?id=37145#c12 -- Please do not feed my mailbo

[EMAIL PROTECTED] Re: Apache 2.0.55/win32 + OpenSSL 0.9.8a & OWA Reverse Proxy Problems

2005-10-24 Thread Helmut Schneider
Helmut Schneider ([EMAIL PROTECTED]) wrote: Manuel Martin ([EMAIL PROTECTED]) wrote: since 2.0.55 a reverse SSL-proxy (on Windows 2000) which I setup for MS Exchange 2003 Outlook Web Access makes problems. The users stumbled over the problem that they cannot attach files to their emails. I

[EMAIL PROTECTED] Re: Apache 2.0.55/win32 + OpenSSL 0.9.8a & OWA Reverse Proxy Problems

2005-10-24 Thread Helmut Schneider
Manuel Martin ([EMAIL PROTECTED]) wrote: since 2.0.55 a reverse SSL-proxy (on Windows 2000) which I setup for MS Exchange 2003 Outlook Web Access makes problems. The users stumbled over the problem that they cannot attach files to their emails. I tried it myself: the attachment seems to be uploa