Displaying 15 results from an estimated 15 matches for "default_backend".
2017 Oct 26
2
haproxy ssl support
...a nice feature for the backend server
to identify clients so one wouldn't have to use disable_plaintext_auth
on a production environment.
--- haproxy.cfg
frontend pop3
bind [::]:110 v4v6
bind [::]:995 v4v6 ssl crt /etc/pki/tls/private/haproxy.pem
mode tcp
default_backend pop3
backend pop3
mode tcp
balance leastconn
stick store-request src
stick-table type ip size 200k expire 30m
timeout connect 5000
timeout server 50000
server proxy1 [2001:db8::11]:10110 send-proxy-v2-ssl
server proxy2 [2001:db8::22]:10110 send-proxy-v2-ssl...
2017 Oct 26
1
haproxy ssl support
...ouldn't have to use disable_plaintext_auth
>> on a production environment.
>>
>> --- haproxy.cfg
>> frontend pop3
>> bind [::]:110 v4v6
>> bind [::]:995 v4v6 ssl crt /etc/pki/tls/private/haproxy.pem
>> mode tcp
>> default_backend pop3
>> backend pop3
>> mode tcp
>> balance leastconn
>> stick store-request src
>> stick-table type ip size 200k expire 30m
>> timeout connect 5000
>> timeout server 50000
>> server proxy1 [2001:db8::11]:10110 send-proxy-...
2016 Jun 24
1
haproxy + Apache + virtual hosts -> wrong host is displayed
...0.0/8
option redispatch
....
frontend public
bind 144.76.184.151:80
bind 144.76.184.151:443 ssl crt /etc/pki/tls/certs/slova.de.pem
reqidel ^X-Forwarded-Proto:
reqidel ^X-Forwarded-For:
reqadd X-Forwarded-Proto:\ https if { ssl_fc }
option forwardfor
default_backend apache
backend apache
server domain 127.0.0.1:8080
The /etc/httpd/conf/httpd.conf binds Apache
to port 8080 and serves several Wordpress sites:
Listen 127.0.0.1:8080
ServerName 144.76.184.151
<VirtualHost 127.0.0.1:8080>
DocumentRoot /var/www/html/afarber.de
ServerName afarber...
2020 Jan 13
2
Adding SNI support to SSH
...whole haproxy configuration for it looks as following. It
supports smtps, imaps. https and http at the moment.
# ipv4 https frontend
frontend httpsipv4
bind ipv4@:443
mode tcp
option tcplog
tcp-request inspect-delay 5s
tcp-request content accept if { req_ssl_hello_type 1 }
default_backend httpsipv4
backend httpsipv4
mode tcp
use-server webmail.ungleich.ch if { req_ssl_sni -i webmail.ungleich.ch }
server webmail.ungleich.ch ipv6 at webmail.ungleich.ch
...
--
Modern, affordable, Swiss Virtual Machines. Visit www.datacenterlight.ch
2018 Apr 10
6
[PATCH 0/5] Some improvements in bootstrap, m4 and configure.ac
Lin Ma (5):
configure: error out if using libvirt backend and no header files
configure: output the default backend in summary
configure: try pcre-config if pcre pkg-config file not found
configure: output clearer message when missing libmagic
configure: support using local gnulib src directory as $GNULIB_SRCDIR
bootstrap | 78
2017 Oct 26
0
haproxy ssl support
...to identify clients so one wouldn't have to use disable_plaintext_auth
> on a production environment.
>
> --- haproxy.cfg
> frontend pop3
> bind [::]:110 v4v6
> bind [::]:995 v4v6 ssl crt /etc/pki/tls/private/haproxy.pem
> mode tcp
> default_backend pop3
> backend pop3
> mode tcp
> balance leastconn
> stick store-request src
> stick-table type ip size 200k expire 30m
> timeout connect 5000
> timeout server 50000
> server proxy1 [2001:db8::11]:10110 send-proxy-v2-ssl
> server p...
2015 Mar 27
5
postfix sasl -> haproxy -> dovecot auth
...= yes
smtpd_sasl_exceptions_networks =
smtpd_sasl_local_domain =
smtpd_sasl_path = inet:127.0.0.1:20025
smtpd_sasl_security_options = noanonymous
smtpd_sasl_tls_security_options = $smtpd_sasl_security_options
smtpd_sasl_type = dovecot
# HAPROX
frontend postfix-sasl
bind 127.0.0.1:20025
default_backend dovecot-auth
backend dovecot-auth
mode tcp
option tcplog
option srvtcpka
hash-type consistent
balance roundrobin
server mail-backend-1 31.220.19.52:20025 check
server mail-backend-2 31.220.19.53:20025 check
2016 Dec 06
2
Dovecot: Mails flagged as read get flagged as unread
...ing
similar issues. However we use mdbox in our setup.
If we enable rawlog for what log patterns should we search?
Your Inputs are highly appreciated!
Thanks and Regards
plataleas
*----- haproxy configuration ------
*frontend frontend_mail.company.org-143
bind 10.100.189.34:143
mode tcp
default_backend backend_mail.company.org-143
backend backend_mail.company.org-143
mode tcp
balance source
server dovecot-proxy01.company.org dovecot-proxy01.company.org:10143
check send-proxy-v2
server dovecot-proxy02.company.org dovecot-proxy02.company.org:10143
check send-proxy-v2 backup
*----- conf...
2015 Oct 07
2
[PATCH 0/2] New APIs: set-identifier, get-identifier
This is very useful for debugging multithreaded programs.
Rich.
2019 Dec 13
8
[v2v PATCH 0/7] Various build fixes
Just like the similar series that already went in for libguestfs [1],
do similar fixes also for virt-v2v, with additional fixes for the
builddir!=srcdir case.
This will also need the fix to subdir-rules.mk.
[1] https://www.redhat.com/archives/libguestfs/2019-December/msg00062.html
Pino Toscano (7):
Update common to latest
build: stop shipping files generated by configure
build: use the
2020 Jan 13
4
Adding SNI support to SSH
Christian Weisgerber <naddy at mips.inka.de> writes:
> On 2020-01-12, Dustin Lundquist <dustin at null-ptr.net> wrote:
>
>> I think the intended application is to proxy through a proxy host provided by the service provider. If SSH had a SNI like feature where a host identifier was passed in plain text during the initial connection. This way the user would just need to
2015 Oct 29
16
[PATCH 00/16] Refactoring of configure.ac and guestfs.pod
Two (not related to each other) refactorings:
Patches 1-12 split configure.ac into smaller files using the
m4_include mechanism.
Patches 13-15 split out parts of guestfs.pod (ie. guestfs(3)) into
three new manual pages:
guestfs-hacking(3) - how to extend and contribute to libguestfs
guestfs-internals(3) - architecture and internals
guestfs-security(3) - security and CVEs
Patch 16 is a
2015 Feb 14
2
[PATCH 0/2] Change guestfs__*
libguestfs has used double and triple underscores in identifiers.
These aren't valid for global names in C++.
(http://stackoverflow.com/a/228797)
These large but completely mechanical patches change the illegal
identifiers to legal ones.
Rich.
2017 Apr 04
1
[PATCH] Use Unicode single quotes ‘’ in place of short single quoted strings throughout.
...d in order to
implement an important bug fix.
diff --git a/lib/handle.c b/lib/handle.c
index ded14823c..91f5f755d 100644
--- a/lib/handle.c
+++ b/lib/handle.c
@@ -132,9 +132,9 @@ guestfs_create_flags (unsigned flags, ...)
if (!g->identifier) goto error;
if (guestfs_int_set_backend (g, DEFAULT_BACKEND) == -1) {
- warning (g, _("libguestfs was built with an invalid default backend, using 'direct' instead"));
+ warning (g, _("libguestfs was built with an invalid default backend, using ‘direct’ instead"));
if (guestfs_int_set_backend (g, "direct") ==...
2019 Sep 10
3
[PATCH 0/2] Remove virt-p2v from libguestfs
Now that virt-p2v has its own repository [1] and releases [2], it is
time to remove it from libguestfs.
[1] https://github.com/libguestfs/virt-p2v
[2] http://download.libguestfs.org/virt-p2v/
Pino Toscano (2):
Remove virt-p2v
Remove remaining virt-p2v bits
.gitignore | 4 -
Makefile.am | 7 +-
bash/Makefile.am