Template Zammad Reverse Proxy mit Apache

Posted on Do 16 Januar 2020 in Linux • Tagged with linux, apache2, zammad

<VirtualHost *:80>
  ServerName ticket.domain.tld
  RewriteEngine on
  RewriteCond %{HTTPS} !=on
  RewriteRule ^/?(.*) https://%{HTTP_HOST}/$1 [R=301,L]
  ProxyPass / http ...
weiterlesen

Continue reading