Apache2 配置:如果启用 mod 则执行?

Apache2 Configuration: Execute if mod is enabled?

是否有可能仅在启用特定 mod(例如 mod_wsgi)时在 Apache 2.4 中执行配置文件的一部分?

Apache 为此提供了IfModule,参见docs

这样使用:

<IfModule ssl_module>
    Include conf/extra/httpd-ssl.conf
    SSLRandomSeed startup builtin
    SSLRandomSeed connect builtin
</IfModule>