Maybe a silly question from a newbie to zammad. I’m desperately try to configure it in a local apache environment instead of nginx. So my apache config file looks like this
<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
DocumentRoot “/opt/zammad/public”
Options FollowSymLinks
AllowOverride None
<Directory “/opt/zammad/public”>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
But there is no “Welcome to Zammad” window, just the directory listing:
Index of /
[ICO] Name Last modified Size Description
[TXT] 401.html 2018-07-30 10:38 737
[TXT] 404.html 2018-07-30 10:38 752
[TXT] 422.html 2018-07-30 10:38 727
[TXT] 500.html 2018-07-30 10:38 633
[IMG] apple-touch-icon.png 2018-07-30 10:38 7.5K
[DIR] assets/ 2018-07-30 13:50 -
[IMG] favicon.ico 2018-07-30 10:38 32K
[TXT] robots.txt
Which is exactly what you would expect as there is no index.htmI or index.php.
Used Zammad version: 2.5.0
Used Zammad installation source: yum
Operating system: Centos 7
What am I doing wrong? Thank you very much!
Lothar Schilling