diff options
Diffstat (limited to 'services.cxx')
-rw-r--r-- | services.cxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/services.cxx b/services.cxx index 37b32cf..3d6f372 100644 --- a/services.cxx +++ b/services.cxx @@ -11,7 +11,11 @@ using namespace brep; using web::apache::service; static search search_mod; -service AP_MODULE_DECLARE_DATA search_srv ("search", search_mod); +service AP_MODULE_DECLARE_DATA search_srv ("search", + search_mod, + {"db-host", "db-port", "conf"}); static view view_mod; -service AP_MODULE_DECLARE_DATA view_srv ("view", view_mod); +service AP_MODULE_DECLARE_DATA view_srv ("view", + view_mod, + {"db-host", "db-port", "conf"}); |