如何为Apache模块定义自定义配置指令?

时间:2012-02-20 11:49:11

标签: c++ c apache delphi apache2

我想要做的是从httpd.conf将一些设置传递给我的模块,例如:

<Location /path>
  SetHandler mymodule-handler # based on this, the module will kick in and "try" to read settings
  MyCustomStringSetting "AStringValue"
  MyCustomIntegerSetting 2012
  # more
</Location>

如何从模块中获取“AStringValue”和“2012”?

1 个答案:

答案 0 :(得分:6)

以下是“Apache:The Definitive Guide”中的完整示例(包含源代码):

http://docstore.mik.ua/orelly/linux/apache/ch15_04.htm

示例模块mod_reveal实现了两个命令:RevealServerTag和RevealTag。

在服务器配置中,可以使用以下两个新命令:

<VirtualHost :9000>
DocumentRoot /home/camilla/WWW/docs
RevealTag H2Main
RevealServerTag H2
</VirtualHost>

然后由模块处理。