maintainer-feedback requested: [Bug 282892] www/apache24 2.4.62 exited on signal 11 (core dumped)

From: <bugzilla-noreply_at_freebsd.org>
Date: Thu, 21 Nov 2024 13:30:24 UTC
Bugzilla Automation <bugzilla@FreeBSD.org> has asked freebsd-apache (Nobody)
<apache@FreeBSD.org> for maintainer-feedback:
Bug 282892: www/apache24 2.4.62 exited on signal 11 (core dumped)
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=282892



--- Description ---
Apache cannot start with default config and one file added:

'/usr/local/etc/apache24/Includes/1.conf'

LoadModule socache_shmcb_module libexec/apache24/mod_socache_shmcb.so
LoadModule ssl_module libexec/apache24/mod_ssl.so

Listen 443

AddType application/x-x509-ca-cert .crt
AddType application/x-pkcs7-crl .crl

SSLPassPhraseDialog builtin

SSLSessionCache "shmcb:/var/run/ssl_scache(512000)"
SSLSessionCacheTimeout 300

SSLCipherSuite HIGH:MEDIUM:!aNULL:!MD5

SSLCACertificateFile "/root/ssl/ca.crt"
SSLCertificateFile "/root/ssl/cert.crt"
SSLCertificateKeyFile "/root/ssl/cert.key"

<VirtualHost *:80>
		<Location />
		AllowOverride none
		Require all denied
		</Location>
</VirtualHost>

<VirtualHost *:443>
	SSLEngine on
		<Location />
		AllowOverride none
		Require all denied
		</Location>
</VirtualHost>