Apache und Webmail auf Port 80

    • Offizieller Beitrag

    Szenario Port 80 ist durch Apache belegt - das Webmail soll jedoch auf Port 80 kaufen.


    Möchte man z.B. webmail.ihredomain.tld statt Port 8000 benutzen:



    • Webmail auf Port 8000 legen
    • Module mod_proxy/mod_proxy_http in Apache einbinden
    • Neuen Vhost erstellen, z.B. webmail.ihredomain.tld



    Im Vhost-Einstellen:
    <Proxy *>
    Order deny_allow
    Allow from all
    </Proxy>
    ProxyPass / http://1.2.3.4:8000/


    1.2.3.4 durch die Server-IP ersetzen. Danach ist das Webmail auch unter webmail.ihredomain.tld auf Port 80 erreichbar.