Apache httpd-2.4.37 インストール

httpd-2.4.37にアップデート

cd /usr/local/src
/opt/curl/bin/curl -L https://www-us.apache.org/dist//httpd/httpd-2.4.37.tar.gz -o httpd-2.4.37.tar.gz
tar zxvf httpd-2.4.37.tar.gz

cp -R apr-1.6.5 httpd-2.4.37/srclib/apr
cp -R apr-util-1.6.1 httpd-2.4.37/srclib/apr-util
cp -R apr-iconv-1.2.2 httpd-2.4.37/srclib/apr-iconv

cd httpd-2.4.37
./configure --prefix=/usr/local/apache2.4 --enable-so --enable-http2 --enable-ssl=shared --with-ssl=/opt/openssl-1.1.1 --enable-rewrite --enable-headers --enable-deflate=shared --with-included-apr --enable-suexec --with-suexec-caller=apache --with-suexec-docroot=/home --with-included-apr --with-pcre=/opt/pcre --with-nghttp2=/usr/local/ --with-curl=/opt/curl --with-jansson=/opt/jansson
make
make install

/usr/local/apache2.4/bin/apachectl start

SSLProtocolに+TLSv1.3を追加した。