<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de">
	<id>https://wiki.ixheim.de/index.php?action=history&amp;feed=atom&amp;title=HAProxy_Rocky_unverschl%C3%BCsselt</id>
	<title>HAProxy Rocky unverschlüsselt - Versionsgeschichte</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.ixheim.de/index.php?action=history&amp;feed=atom&amp;title=HAProxy_Rocky_unverschl%C3%BCsselt"/>
	<link rel="alternate" type="text/html" href="https://wiki.ixheim.de/index.php?title=HAProxy_Rocky_unverschl%C3%BCsselt&amp;action=history"/>
	<updated>2026-06-29T11:17:49Z</updated>
	<subtitle>Versionsgeschichte dieser Seite in Xinux Wiki</subtitle>
	<generator>MediaWiki 1.35.1</generator>
	<entry>
		<id>https://wiki.ixheim.de/index.php?title=HAProxy_Rocky_unverschl%C3%BCsselt&amp;diff=65970&amp;oldid=prev</id>
		<title>Thomas.will: Thomas.will verschob die Seite HAProxy Rocky I. nach HAProxy Rocky unverschlüsselt</title>
		<link rel="alternate" type="text/html" href="https://wiki.ixheim.de/index.php?title=HAProxy_Rocky_unverschl%C3%BCsselt&amp;diff=65970&amp;oldid=prev"/>
		<updated>2025-12-02T21:11:14Z</updated>

		<summary type="html">&lt;p&gt;Thomas.will verschob die Seite &lt;a href=&quot;/index.php/HAProxy_Rocky_I.&quot; class=&quot;mw-redirect&quot; title=&quot;HAProxy Rocky I.&quot;&gt;HAProxy Rocky I.&lt;/a&gt; nach &lt;a href=&quot;/index.php/HAProxy_Rocky_unverschl%C3%BCsselt&quot; title=&quot;HAProxy Rocky unverschlüsselt&quot;&gt;HAProxy Rocky unverschlüsselt&lt;/a&gt;&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left diff-editfont-monospace&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;de&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Nächstältere Version&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Version vom 2. Dezember 2025, 21:11 Uhr&lt;/td&gt;
				&lt;/tr&gt;
&lt;!-- diff cache key my_wiki:diff::1.12:old-65968:rev-65970 --&gt;
&lt;/table&gt;</summary>
		<author><name>Thomas.will</name></author>
	</entry>
	<entry>
		<id>https://wiki.ixheim.de/index.php?title=HAProxy_Rocky_unverschl%C3%BCsselt&amp;diff=65968&amp;oldid=prev</id>
		<title>Thomas.will: Die Seite wurde neu angelegt: „=HAProxy als Reverse Proxy unter Rocky Linux=  ==Voraussetzungen== * Rocky Linux mit installiertem Paket ''haproxy'' * Servername: haproxy1.it213.int * IP-Adre…“</title>
		<link rel="alternate" type="text/html" href="https://wiki.ixheim.de/index.php?title=HAProxy_Rocky_unverschl%C3%BCsselt&amp;diff=65968&amp;oldid=prev"/>
		<updated>2025-12-02T21:06:13Z</updated>

		<summary type="html">&lt;p&gt;Die Seite wurde neu angelegt: „=HAProxy als Reverse Proxy unter Rocky Linux=  ==Voraussetzungen== * Rocky Linux mit installiertem Paket &amp;#039;&amp;#039;haproxy&amp;#039;&amp;#039; * Servername: haproxy1.it213.int * IP-Adre…“&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Neue Seite&lt;/b&gt;&lt;/p&gt;&lt;div&gt;=HAProxy als Reverse Proxy unter Rocky Linux=&lt;br /&gt;
&lt;br /&gt;
==Voraussetzungen==&lt;br /&gt;
* Rocky Linux mit installiertem Paket ''haproxy''&lt;br /&gt;
* Servername: haproxy1.it213.int&lt;br /&gt;
* IP-Adresse: 192.168.178.6&lt;br /&gt;
* Zielsystem: 192.168.178.7 Port 80&lt;br /&gt;
&lt;br /&gt;
==Installation==&lt;br /&gt;
* dnf install haproxy -y&lt;br /&gt;
&lt;br /&gt;
==Firewall-Konfiguration (Rocky/Firewalld)==&lt;br /&gt;
* firewall-cmd --add-service=http --permanent&lt;br /&gt;
* firewall-cmd --reload&lt;br /&gt;
&lt;br /&gt;
==HAProxy-Konfiguration==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
global&lt;br /&gt;
    log /dev/log local0&lt;br /&gt;
    log /dev/log local1 notice&lt;br /&gt;
    chroot /var/lib/haproxy&lt;br /&gt;
    stats timeout 30s&lt;br /&gt;
    user haproxy&lt;br /&gt;
    group haproxy&lt;br /&gt;
    daemon&lt;br /&gt;
&lt;br /&gt;
defaults&lt;br /&gt;
    log     global&lt;br /&gt;
    mode    http&lt;br /&gt;
    option  httplog&lt;br /&gt;
    option  dontlognull&lt;br /&gt;
    timeout connect 5s&lt;br /&gt;
    timeout client  50s&lt;br /&gt;
    timeout server  50s&lt;br /&gt;
&lt;br /&gt;
frontend fe_http&lt;br /&gt;
    bind 192.168.178.6:80&lt;br /&gt;
    default_backend be_target&lt;br /&gt;
&lt;br /&gt;
backend be_target&lt;br /&gt;
    server srv1 192.168.178.7:80 check&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Dienst neu starten==&lt;br /&gt;
* systemctl restart haproxy&lt;br /&gt;
* systemctl enable haproxy&lt;br /&gt;
* systemctl status haproxy&lt;br /&gt;
&lt;br /&gt;
==Funktionstest==&lt;br /&gt;
* curl -v http://192.168.178.6/&lt;br /&gt;
* curl -v http://haproxy1.it213.int/&lt;/div&gt;</summary>
		<author><name>Thomas.will</name></author>
	</entry>
</feed>