なぜ 2 つの httpd モジュール フォルダがあるのですか? /usr/lib64/httpd/modules と /etc/httpd/modules

なぜ 2 つの httpd モジュール フォルダがあるのですか? /usr/lib64/httpd/modules と /etc/httpd/modules

私は仮想環境用に Python 2.7 (サーバーのデフォルトではありません) で mod_wsgi をコンパイルしようとしています。

私は次のようなことをやっています:

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

私は両方にmod_wsgi.soを持っており/usr/lib64/httpd/modules/mod_wsgi.so/etc/httpd/modules/mod_wsgi.so

httpd.conf では、次の両方を試しました:

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

答え1

@ikrabbe が推測したように、それらはシンボリックリンクされています。

# 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

答え2

推測ですが、/etc/httpd/modules は /usr/lib64/httpd/modules にリンクしているので、両方とも同じファイルです。

関連情報