Por que tenho 2 pastas de módulos httpd? /usr/lib64/httpd/modules e /etc/httpd/modules

Por que tenho 2 pastas de módulos httpd? /usr/lib64/httpd/modules e /etc/httpd/modules

Estou tentando compilar o mod_wsgi no Python 2.7 (que não é o padrão do meu servidor) para o meu virtualenv.

Estou fazendo algo assim:

wget -q "https://github.com/GrahamDumpleton/mod_wsgi/archive/4.2.8.tar.gz"
tar -xzf '4.2.8.tar.gz'
cd ./mod_wsgi-4.2.8
./configure --with-python=python2.7 --with-apxs=/usr/sbin/apxs LDFLAGS="-R/usr/local/lib" --prefix=/usr/local
make
make install

Eu tenho mod_wsgi.so em ambos /usr/lib64/httpd/modules/mod_wsgi.soe/etc/httpd/modules/mod_wsgi.so

No httpd.conf eu tentei ambos:

LoadModule wsgi_module /usr/lib64/httpd/modules/mod_wsgi.so
LoadModule wsgi_module modules/mod_wsgi.so

Responder1

Como @ikrabbe adivinha, eles têm links simbólicos.

# ls -las /etc/httpd
total 16
4 drwxr-xr-x  4 root root 4096 Jun 19 12:43 .
4 drwxr-xr-x 50 root root 4096 Jun 19 12:43 ..
4 drwxr-xr-x  2 root root 4096 Jun 19 12:43 conf
4 drwxr-xr-x  2 root root 4096 Jun 19 12:43 conf.d
0 lrwxrwxrwx  1 root root   19 Jun 19 12:43 logs -> ../../var/log/httpd
0 lrwxrwxrwx  1 root root   29 Jun 19 12:43 modules -> ../../usr/lib64/httpd/modules
0 lrwxrwxrwx  1 root root   19 Jun 19 12:43 run -> ../../var/run/httpd

Responder2

Só estou supondo: /etc/httpd/modules links para /usr/lib64/httpd/modules, então ambos são os mesmos arquivos.

informação relacionada