Что я хочу сделать, это передать некоторые параметры моему модулю из 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" из модуля?