Zammad mit Apache

Infos:

  • Used Zammad version: 3.0
  • Used Zammad installation source: (source, package, …) RedHat RPM Package
  • Operating system: CentOS 7.6
  • Browser + version: 67.0.4

Hallo Zusammen,
ich versuche verzweifelt seit Tagen Zammad unter Apache zum Laufen zu kriegen, aber irgendwie ist da der Bock drin.
Welche Einstellung, Dateien muss ich ändern, zufügen oder löschen damit Zammad als Subdomain läuft?
Im jetztigen Status habe ich lediglich die Datei in /etc/httpd/config.d/ticket.conf
<VirtualHost *:80>
# replace ‘localhost’ with your fqdn if you want to use zammad from remote
ServerName ticket.astardi-group.de

## 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>

und die Datei /etc/httpd/conf.d/ticket-le-ssl.conf

<VirtualHost *:443>
ServerName ticket.astardi-group.de
ServerAdmin webmaster@astardi-group.de
DocumentRoot /opt/zammad/public

<Directory /opt/zammad/public>
    Options -Indexes +FollowSymLinks
    AllowOverride All
</Directory>

ErrorLog /var/log/httpd/ticket-error.log
CustomLog /var/log/httpd/ticket-access.log combined

SSLCertificateFile /etc/letsencrypt/live/astardi-group.de/cert.pem
SSLCertificateKeyFile /etc/letsencrypt/live/astardi-group.de/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateChainFile /etc/letsencrypt/live/astardi-group.de/chain.pem

wie o.g. geändert.
Beim Aufruf der Seite passiert einfach gar nichts. Fehler: Netzwerk-Zeitüberschreitung.

Vielleicht weiss jemand von euch, wo ich den Fehler drin habe.

Vielen Dank schon einmal und Gruß
Stefan

Hey @stefan55berlin,

welcome to the community!

Please bear in mind that the current guidelines for this community intend our communication in public posts to be english only so i’m not answering your request in german.

Using the search function i found a lot posts that are probably relevant for your case.

Have a look at that one f. e. and see if it helps:

If not - just search for apache and you’ll find a lot more posts that’ll probably help you :slight_smile:.

cheers

This topic was automatically closed 120 days after the last reply. New replies are no longer allowed.