Adds SecComponentSignature configuration directive

This commit is contained in:
Felipe Zimmerle
2015-07-09 17:13:04 -03:00
parent 4aa521df65
commit 1ddb36a781
6 changed files with 69 additions and 0 deletions

View File

@@ -161,6 +161,7 @@ int Rules::merge(Driver *from) {
this->sec_response_body_access = from->sec_response_body_access;
this->debug_log_path = from->debug_log_path;
this->debug_level = from->debug_level;
this->components = from->components;
if (m_custom_debug_log) {
this->debug_log = m_custom_debug_log->new_instance();
@@ -194,6 +195,7 @@ int Rules::merge(Rules *from) {
this->sec_audit_engine = from->sec_audit_engine;
this->sec_request_body_access = from->sec_request_body_access;
this->sec_response_body_access = from->sec_response_body_access;
this->components = from->components;
this->debug_log = from->debug_log;