https://bz.apache.org/bugzilla/show_bug.cgi?id=68970

--- Comment #5 from Allan Schrum <[email protected]> ---
No. Our environment is secured in such a way that network sniffs are not
possible. For this environment we terminate at the edge and forward traffic to
port 80. Our production environments are more secure.

The server code was built with:

function mpmbuild()
{
mpm=$1; sh`'`'ift
mkdir $mpm; pushd $mpm
../configure \
    --prefix=%{_sysconfdir}/httpd \
    --exec-prefix=%{_prefix} \
    --bindir=%{_bindir} \
    --sbindir=%{_sbindir} \
    --mandir=%{_mandir} \
    --libdir=%{_libdir} \
    --sysconfdir=%{_sysconfdir}/httpd/conf \
    --includedir=%{_includedir}/httpd \
    --libexecdir=%{_libdir}/httpd/modules \
    --datadir=%{contentdir} \
    --with-installbuilddir=%{_libdir}/httpd/build \
    --with-mpm=$mpm \
    --with-apr=%{_prefix} --with-apr-util=%{_prefix} \
    --enable-suexec --with-suexec \
    --with-suexec-caller=%{suexec_caller} \
    --with-suexec-docroot=%{contentdir} \
    --with-suexec-logfile=%{_localstatedir}/log/httpd/suexec.log \
    --with-suexec-bin=%{_sbindir}/suexec \
    --with-suexec-uidmin=500 --with-suexec-gidmin=100 \
    --enable-systemd \
    --enable-pie \
    --with-pcre \
    $*

make %{?_smp_mflags} EXTRA_CFLAGS="-Werror-implicit-function-declaration"
popd
}

prefork
mpmbuild prefork \
    --enable-mods-shared=all \
    --enable-ssl --with-ssl \
    --enable-proxy \
    --enable-cache \
    --enable-disk-cache \
    --enable-ldap --enable-authnz-ldap \
    --enable-cgid \
    --enable-authn-anon --enable-authn-alias \
    --disable-imagemap

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to