trabajo-afectivo/contrib/apache2/zammad.conf

44 lines
911 B
Text
Raw Normal View History

2016-11-15 09:29:31 +00:00
#
# this is the apache config for zammad
#
<VirtualHost *:80>
# replace 'localhost' with your fqdn if you want to use zammad from remote
2016-11-16 09:33:06 +00:00
ServerName ubuntu.local
2016-11-15 09:29:31 +00:00
## 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
2016-11-16 09:33:06 +00:00
<Proxy localhost:3000>
Require local
2016-11-15 09:29:31 +00:00
</Proxy>
ProxyPass /assets !
ProxyPass /favicon.ico !
ProxyPass /robots.txt !
ProxyPass /ws ws://localhost:6042/
ProxyPass / http://localhost:3000/
DocumentRoot "/opt/zammad/public"
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory "/opt/zammad/public">
Options FollowSymLinks
2016-11-16 09:33:06 +00:00
Require all granted
2016-11-15 09:29:31 +00:00
</Directory>
</VirtualHost>