zammad.conf 908 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #
  2. # this is the apache config for zammad
  3. #
  4. <VirtualHost *:80>
  5. # replace 'localhost' with your fqdn if you want to use zammad from remote
  6. ServerName localhost
  7. ## don't loose time with IP address lookups
  8. HostnameLookups Off
  9. ## needed for named virtual hosts
  10. UseCanonicalName Off
  11. ## configures the footer on server-generated documents
  12. ServerSignature Off
  13. ProxyRequests Off
  14. ProxyPreserveHost On
  15. <Proxy 127.0.0.1:3000>
  16. Require local
  17. </Proxy>
  18. ProxyPass /assets !
  19. ProxyPass /favicon.ico !
  20. ProxyPass /robots.txt !
  21. ProxyPass /ws ws://127.0.0.1:6042/
  22. ProxyPass / http://127.0.0.1:3000/
  23. DocumentRoot "/opt/zammad/public"
  24. <Directory />
  25. Options FollowSymLinks
  26. AllowOverride None
  27. </Directory>
  28. <Directory "/opt/zammad/public">
  29. Options FollowSymLinks
  30. Require all granted
  31. </Directory>
  32. </VirtualHost>