I installed Zammad for the first time on an Unbuntu 24.04 according to the documentation at Configure the Webserver — Zammad System Documentation documentation. Everything worked fine but the first page of Zammad doesn’t appear. Only the standard Apache page can be seen.
Can someone tell me what I’m doing wrong?
I have adapted everything possible to the zammad.conf file (according to the documentation)
As this is what you’ve written which helps people helping you as little as my answer:
Everything worked fine but the first page of Zammad doesn’t appear. Only the standard Apache page can be seen.
Can someone tell me what I’m doing wrong?
I have adapted everything possible to the zammad.conf file (according to the documentation)
My answer would be the same if you would have said "installed it for the 20th time. It’s not about your first time, it’s about the information you provide which forces people to poke in your nose.
So more information, but I don’t want to write things that might not help anyone here.
What would be relevant for you? What information would be important to help me with the problem?
As already written, I installed according to the Zammad instructions.
<VirtualHost *:443>
SSLEngine on
SSLProtocol all -SSLv2 -SSLv3
SSLCipherSuite EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH
SSLCertificateFile /etc/letsencrypt/live/test-domain.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/test-domain.com/privkey.pem
SSLCertificateChainFile /etc/letsencrypt/live/test-domain.com/cert.pem
SSLOpenSSLConfCmd DHParameters /etc/ssl/dhparam.pem
# replace 'localhost' with your fqdn if you want to use zammad from remote
ServerName test-domain.com
## 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 /apple-touch-icon.png !
ProxyPass /robots.txt !
# legacy web socket server
ProxyPass /ws ws://127.0.0.1:6042/
# action cable
ProxyPass /cable ws://127.0.0.1:3000/cable
ProxyPass / http://127.0.0.1:3000/
# change this line in an SSO setup
RequestHeader unset X-Forwarded-User
# Use settings below if proxying does not work and you receive HTTP-Errror 404
# if you use the settings below, make sure to comment out the above two options
# This may not apply to all systems, applies to openSuse
#ProxyPass /ws ws://127.0.0.1:6042/ "retry=1 acque=3000 timeout=600 keepalive=On"
#ProxyPass /cable ws://127.0.0.1:3000/cable "retry=1 acque=3000 timeout=600 keepalive=On"
#ProxyPass / http://127.0.0.1:3000/ "retry=1 acque=3000 timeout=600 keepalive=On"
DocumentRoot "/opt/zammad/public"
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory "/opt/zammad/public">
Options FollowSymLinks
Require all granted
</Directory>