Hi everybody!
After today’s update (which also updated letsencrypt app), it’s not possible anymore to access SuiteCRM (in the docker container) with https.
I can access via http://myhost.example.com/suitecrm, but not with https://myhost.example.com/suitecrm. When doing so, I get this error message:
The requested URL /suitecrm/ was not found on this server.
I also get this error message when I stop the docker container.
/etc/apache2/sites-enabled/default-ssl.conf:
<IfModule mod_ssl.c>
<VirtualHost *:443>
IncludeOptional /etc/apache2/ucs-sites.conf.d/*.conf
SSLEngine on
SSLProxyEngine on
SSLProxyCheckPeerCN off
SSLProxyCheckPeerName off
SSLProxyCheckPeerExpire off
SSLCertificateFile /etc/univention/letsencrypt/signed_chain.crt
SSLCertificateKeyFile /etc/univention/letsencrypt/domain.key
SSLCACertificateFile /etc/univention/letsencrypt/chained.pem
SSLCertificateChainFile /etc/univention/letsencrypt/intermediate.pem
#SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
### To enable special log format for HTTPS-access
# LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-agent}i\" %p" combinedssl
# CustomLog /var/log/apache2/access.log combinedssl ## with port number
ProxyPass /suitecrm https://127.0.0.1:40001/suitecrm retry=0
ProxyPassReverse /suitecrm https://127.0.0.1:40001/suitecrm
</VirtualHost>
</IfModule>
This looks exactly like the last backup.
/etc/apache2/sites-enabled/000-default.conf:
<VirtualHost *:80>
IncludeOptional /etc/apache2/ucs-sites.conf.d/*.conf
ProxyPass /suitecrm http://127.0.0.1:40000/suitecrm retry=0
ProxyPassReverse /suitecrm http://127.0.0.1:40000/suitecrm
</VirtualHost>
#ps aux | grep docker
root 1341 0.0 0.5 500552 48336 ? Ssl 01:16 0:02 /usr/bin/dockerd -H fd:// --storage-driver=overlay --live-restore --bip=172.17.42.1/16
root 1366 0.0 0.1 293296 11888 ? Ssl 01:16 0:01 docker-containerd -l unix:///var/run/docker/libcontainerd/docker-containerd.sock --metrics-interval=0 --start-timeout 2m --state-dir /var/run/docker/libcontainerd/containerd --shim docker-containerd-shim --runtime docker-runc
root 2128 0.0 0.0 50672 2448 ? Sl 01:16 0:00 /usr/bin/docker-proxy -proto tcp -host-ip 0.0.0.0 -host-port 40001 -container-ip 172.17.0.1 -container-port 443
root 2149 0.0 0.0 55504 3312 ? Sl 01:16 0:00 /usr/bin/docker-proxy -proto tcp -host-ip 0.0.0.0 -host-port 40000 -container-ip 172.17.0.1 -container-port 80
root 2156 0.0 0.0 209720 3800 ? Sl 01:16 0:00 docker-containerd-shim 5daf24aa6c0de166fef2b50cd470c867d0cdc0fae8b1bb05ee7bf79e44341c44 /var/run/docker/libcontainerd/5daf24aa6c0de166fef2b50cd470c867d0cdc0fae8b1bb05ee7bf79e44341c44 docker-runc
Any hints or help would be greatly appreciated!
Thanks in advance!