Displaying 7 results from an estimated 7 matches for "sslrequiressl".
2006 Jan 05
1
Apache reverse proxy authentication problem on RHEL based distribs only
...teKeyFile /etc/httpd/conf/ssl.key/server.key
RequestHeader set Front-End-Https "On"
ProxyRequests Off
ProxyPreserveHost On
LogLevel debug
<Location /exchange>
ProxyPass http://yyy.yyy.yyy.yyy/exchange
ProxyPassReverse http://yyy.yyy.yyy.yyy/exchange
SSLRequireSSL
</Location>
<Location /exchweb>
ProxyPass http://yyy.yyy.yyy.yyy/exchweb
ProxyPassReverse http://yyy.yyy.yyy.yyy/exchweb
SSLRequireSSL
</Location>
<Location /public>
ProxyPass http://yyy.yyy.yyy.yyy/public
ProxyPassReverse http://yyy.yy...
2009 Dec 29
2
My previous post (lengthy, lots of tarace output)
Ping?
--
Cheers, Gene
"There are four boxes to be used in defense of liberty:
soap, ballot, jury, and ammo. Please use in that order."
-Ed Howdershelt (Author)
What does "it" mean in the sentence "What time is it?"?
2009 Oct 11
3
SVN hell!
...ersion.conf
and here is the content:
========================
<Location /svn>
DAV svn
SVNParentPath /var/www/svn
# Limit write permission to list of valid users.
<LimitExcept GET PROPFIND OPTIONS REPORT>
# Require SSL connection for password protection.
# SSLRequireSSL
AuthType Basic
AuthName "SVN 1"
AuthUserFile /etc/svn/svn-auth-conf
Require valid-user
</LimitExcept>
</Location>
After, i did:
=============
mkdir -p //var/www/svn/applitv
svnadmin create /var/www/svn/applitv
svn mkdir file://localhost/var/w...
2007 Nov 23
3
webserver setup
Hi,
I have setup a webserver on CentOS 4.5 with NameVirtualHost.
Two VirtualHost should be reachable by port 80 from outside, while the
third (default) should be only reachable by https from outside but by
http from inside.
Since all share the same IP firewalling seems to be out of question. So
is there a way to restrict that in Apache config?
regards, Andreas
2016 Apr 12
1
Slow authentication on C7
...500000
LDAPCacheEntries 1024
LDAPCacheTTL 600
LDAPOpCacheEntries 1024
LDAPOpCacheTTL 600
<Location /ldap-status>
SSLRequire true
SetHandler ldap-status
</Location>
<Location /repos>
DAV svn
SVNParentPath /srv/svn/repos
</Location>
<Location /repos/repo1>
SSLRequireSSL
AuthName "SVN Repo 1"
AuthType Basic
AuthLDAPBindDN cn=svnbind,cn=systemusers,dc=example,dc=com
AuthLDAPBindPassword plaintextpassword
AuthUserFile /etc/httpd/svnpasswd
AuthLDAPURL "ldaps://ldapserver1.example.com/dc=example,dc=com?uid
ldaps://ldapserver2.example.com/dc...
2018 Feb 08
1
How to grant user access to his .dovecot.sieve.log?
On Feb 6, 2018, at 19:53, Sergey Ivanov <seriv at cs.umd.edu> wrote:
> Answering myself (not yet implemented, but I hope it will work):
> Using sieve extprograms extension and global "after" script, I can read .dovecot.sieve.log into a sieve variable 'log_content' if this log is not empty. I hope this log will be written before "after" script is called, but
2016 Apr 12
2
Slow authentication on C7
James Hogarth wrote:
> On 12 Apr 2016 16:29, "Scott Robbins" <scottro11 at gmail.com> wrote:
>> On Tue, Apr 12, 2016 at 09:45:17AM +0200, Marcin Trendota wrote:
>> > W dniu 11.04.2016 o 20:07, Scott Robbins pisze:
<SNIP>
> After various testing I ended up going with the Apache LDAP cache module
> and doing the auth at the Apache level, not system.
>