I've setup OTRS and created 3 different .conf files in my conf.d for OTRS, but i'm having problems adding the let's encrypt ssl certificates.
I've installed certbot and it's confirmed the ssl certificates, how do i write apache to make it use them. I'm on Centos 7.5.
Code: Select all
This is the top of my otrsagent.conf
# --
# added for OTRS (http://otrs.org/)
# --
ScriptAlias /otrs/ "/opt/otrs/bin/cgi-bin/"
Alias /otrs-web/ "/opt/otrs/var/httpd/htdocs/"
<VirtualHost *:80>
ServerName support.solidblueit.co.uk
DocumentRoot /opt/otrs/bin/cgi-bin
<Directory /opt/otrs/bin/cgi-bin/>
Options FollowSymLinks
AllowOverride None
DirectoryIndex /otrs/index.pl
</Directory>
</VirtualHost>