This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -uNr httpd-2.4.4.orig/modules/metadata/mod_headers.c httpd-2.4.4/modules/metadata/mod_headers.c | |
--- httpd-2.4.4.orig/modules/metadata/mod_headers.c 2012-12-09 22:20:13.000000000 +0900 | |
+++ httpd-2.4.4/modules/metadata/mod_headers.c 2013-02-27 19:37:08.466361782 +0900 | |
@@ -96,7 +96,8 @@ | |
hdr_unset = 'u', /* unset header */ | |
hdr_echo = 'e', /* echo headers from request to response */ | |
hdr_edit = 'r', /* change value by regexp, match once */ | |
- hdr_edit_r = 'R' /* change value by regexp, everymatch */ | |
+ hdr_edit_r = 'R', /* change value by regexp, everymatch */ | |
+ hdr_toenv = 'E' /* copy to subprocess_env and unset */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# <match dbi.test> | |
# type dbi | |
# #dsn DBI:Pg:dbname:127.0.0.1 | |
# dsn DBI:Mysql:dbname:127.0.0.1 | |
# db_user username | |
# db_pass password | |
# keys host,time_m,method,uri,protocol,status | |
# query insert into access_log (host, time, method, uri, protocol, status) values (?, ?, ?, ?, ?, ?) | |
# </match> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Fluent | |
class AsisTailInput < TailInput | |
Plugin.register_input('tailasis', self) | |
def initialize | |
super | |
@parser = nil | |
end |
NewerOlder