sde
Verified User
Does DA itself need any of the modules defined in the default ap2 config? I want to remove a bunch of modules for this single site server install that doesn't need all that, but I wanted to ask before I start removing items from the config.
The site on this server is a busy vbulletin forum and I'm just trying to optimize for performance. Not interested in running cgi because of the potential security issues of a PHP injection being able to write over any file.
Any other performance insight in terms of apache would be appreciated.
Here's the default ap2 config.
The site on this server is a busy vbulletin forum and I'm just trying to optimize for performance. Not interested in running cgi because of the potential security issues of a PHP injection being able to write over any file.
Any other performance insight in terms of apache would be appreciated.
Here's the default ap2 config.
Code:
#!/bin/sh
"./configure" \
"--prefix=/etc/httpd" \
"--exec-prefix=/etc/httpd" \
"--bindir=/usr/bin" \
"--sbindir=/usr/sbin" \
"--sysconfdir=/etc/httpd/conf" \
"--enable-so" \
"--enable-dav" \
"--enable-dav-fs" \
"--enable-dav-lock" \
"--enable-suexec" \
"--enable-deflate" \
"--enable-unique-id" \
"--with-suexec-caller=apache" \
"--with-suexec-docroot=/" \
"--with-suexec-gidmin=100" \
"--with-suexec-logfile=/var/log/httpd/suexec_log" \
"--with-suexec-uidmin=100" \
"--with-suexec-userdir=public_html" \
"--with-suexec-bin=/usr/sbin/suexec" \
"--with-included-apr" \
"--with-pcre=/usr/local" \
"--includedir=/usr/include/apache" \
"--libexecdir=/usr/lib/apache" \
"--datadir=/var/www" \
"--localstatedir=/var" \
"--enable-logio" \
"--enable-ssl" \
"--enable-rewrite" \
"--enable-proxy" \
"--enable-expires" \
"--with-ssl=/usr" \
"--enable-headers"