You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
httpd: Syntax error on line 159 of /usr/local/apache2/conf/httpd.conf: Cannot load modules/mod_ssl.so into server: Error relocating /usr/local/apache2/modules/mod_ssl.so: SSL_CTX_set_post_handshake_auth: symbol not found
#17
Open
toktay opened this issue
Nov 26, 2019
· 3 comments
I receive following error with following compose file.
httpd: Syntax error on line 159 of /usr/local/apache2/conf/httpd.conf: Cannot load modules/mod_ssl.so into server: Error relocating /usr/local/apache2/modules/mod_ssl.so: SSL_CTX_set_post_handshake_auth: symbol not found
docker file that generated this error... is as follows. I have tried to use my self signed sertificate by mounting /cert.pem and /privkey.pem I received the same error.
I recently installed Openmediavault 5 as a private NAS. This version dockerizes most of the additional components. As I need a webdav solution, I installed this image from within Portainer.
All works well except encrypted communication. I receive exactly the same error as above when I mount my personal Letsencrypt certificate as /cert.pem and /privkey.pem files.
I receive following error with following compose file.
httpd: Syntax error on line 159 of /usr/local/apache2/conf/httpd.conf: Cannot load modules/mod_ssl.so into server: Error relocating /usr/local/apache2/modules/mod_ssl.so: SSL_CTX_set_post_handshake_auth: symbol not found
docker file that generated this error... is as follows. I have tried to use my self signed sertificate by mounting /cert.pem and /privkey.pem I received the same error.
version: '3'
services:
webdav:
image: bytemark/webdav
restart: always
ports:
- "8080:80"
environment:
AUTH_TYPE: Basic
SSL_CERT: selfsigned
SERVER_NAMES: xxx.yyy.com
volumes:
- /storage/pool/webdav:/var/lib/dav
- /storage/pool/dockdder/auth/user.passwd:/user.passwd
The text was updated successfully, but these errors were encountered: