Penso che tutte queste risposte non stiano davvero rispondendo alla domanda. Il livello di root può essere determinato eseguendo il comando httpd -V
. Questo ti mostrerà con quali opzioni è stato creato il demone Apache in fase di compilazione. Questo è ciò che controlla dove httpd
determina dove cercare la sua configurazione. file e moduli .so per impostazione predefinita.
Per esempio:
% httpd -V
Server version: Apache/2.2.17 (Unix)
Server built: Dec 17 2010 11:58:24
Server's Module Magic Number: 20051115:25
Server loaded: APR 1.3.12, APR-Util 1.3.9
Compiled using: APR 1.3.12, APR-Util 1.3.9
Architecture: 32-bit
Server MPM: Prefork
threaded: no
forked: yes (variable process count)
Server compiled with....
-D APACHE_MPM_DIR="server/mpm/prefork"
-D APR_HAS_SENDFILE
-D APR_HAS_MMAP
-D APR_HAVE_IPV6 (IPv4-mapped addresses enabled)
-D APR_USE_SYSVSEM_SERIALIZE
-D APR_USE_PTHREAD_SERIALIZE
-D SINGLE_LISTEN_UNSERIALIZED_ACCEPT
-D APR_HAS_OTHER_CHILD
-D AP_HAVE_RELIABLE_PIPED_LOGS
-D DYNAMIC_MODULE_LIMIT=128
-D HTTPD_ROOT="/etc/httpd"
-D SUEXEC_BIN="/usr/sbin/suexec"
-D DEFAULT_PIDLOG="logs/httpd.pid"
-D DEFAULT_SCOREBOARD="logs/apache_runtime_status"
-D DEFAULT_LOCKFILE="logs/accept.lock"
-D DEFAULT_ERRORLOG="logs/error_log"
-D AP_TYPES_CONFIG_FILE="conf/mime.types"
-D SERVER_CONFIG_FILE="conf/httpd.conf"
La linea chiave in quell'output è il HTTPD_ROOT
. Ciò definisce dove ROOT
deve iniziare la directory di Apache , /etc/httpd
nel mio caso, quando si cerca config. file e moduli.
NOTA: questa ROOT
non è la stessa cosa di DocumentRoot
. Questo ROOT
è specifico per come è httpd
stato compilato il demone, DocumentRoot
serve per specificare dove il httpd
demone dovrebbe iniziare a cercare il contenuto web effettivo (file .html e simili).
Per il mio httpd.conf
file ho le seguenti righe di caricamento:
LoadModule auth_basic_module modules/mod_auth_basic.so
LoadModule auth_digest_module modules/mod_auth_digest.so
LoadModule authn_file_module modules/mod_authn_file.so
Detto questo, il percorso completo dei moduli sarebbe, ad esempio:
/etc/httpd/modules/mod_auth_basic.so
Questo proviene da un sistema CentOS 5.x ma la tecnica è ancora adatta.
A proposito, può diventare un po 'confuso perché nel caso di CentOS i file sono organizzati fisicamente qui:
% ls /usr/lib/httpd/modules/
libphp5.so mod_authnz_ldap.so mod_dav_fs.so mod_headers.so mod_perl.so mod_speling.so
... e quindi accessibile al demone Apache httpd
, attraverso questo percorso:
% ls -l /etc/httpd/
total 12
drwxr-xr-x 2 root root 4096 Apr 26 2011 conf
drwxr-xr-x 3 root root 4096 Apr 26 2011 conf.d
-rw-r--r-- 1 root root 18 Feb 24 2009 htpasswd
lrwxrwxrwx 1 root root 19 Apr 26 2011 logs -> ../../var/log/httpd
lrwxrwxrwx 1 root root 27 Apr 26 2011 modules -> ../../usr/lib/httpd/modules
lrwxrwxrwx 1 root root 13 Apr 26 2011 run -> ../../var/run
Il modules
collegamento collega /etc/httpd
-> /usr/lib/httpd/modules
.