Apache als Frontend für (get on) tracks

Fürs Archiv die Apache-Konfiguration für tracks, da ich doch nun lieber orgmode  als GTD-Tool verwende:

RewriteEngine on
# Prevent redundant rewrites - only rewrite when https is off
RewriteCond %{HTTPS} !=on
RewriteRule ^/tracks(.*) https://example.com/tracks$1 [R,L]

ServerSignature On
ProxyRequests Off

     Order deny,allow
     Allow from all

ProxyPass /tracks http://127.0.0.1:3000
ProxyPassReverse /tracks http://127.0.0.1:3000
ProxyPreserveHost On