12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #
- # this is the apache config for zammad
- #
- <VirtualHost *:80>
- # replace 'localhost' with your fqdn if you want to use zammad from remote
- ServerName localhost
- ## don't loose time with IP address lookups
- HostnameLookups Off
- ## needed for named virtual hosts
- UseCanonicalName Off
- ## configures the footer on server-generated documents
- ServerSignature Off
- ProxyRequests Off
- ProxyPreserveHost On
- <Proxy 127.0.0.1:3000>
- Require local
- </Proxy>
- ProxyPass /assets !
- ProxyPass /favicon.ico !
- ProxyPass /robots.txt !
- ProxyPass /ws ws://127.0.0.1:6042/
- ProxyPass / http://127.0.0.1:3000/
- DocumentRoot "/opt/zammad/public"
- <Directory />
- Options FollowSymLinks
- AllowOverride None
- </Directory>
- <Directory "/opt/zammad/public">
- Options FollowSymLinks
- Require all granted
- </Directory>
- </VirtualHost>
|