added to http-stager block

master
xx0hcd 2019-06-05 13:22:46 -05:00 committed by GitHub
parent 4616160232
commit 9371762eb9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 1 deletions

View File

@ -244,11 +244,22 @@ http-stager {
header "Accept" "*/*"; header "Accept" "*/*";
header "Accept-Language" "en-US"; header "Accept-Language" "en-US";
header "Connection" "close"; header "Connection" "close";
#can use a parameter as well
parameter "test1" "test2";
} }
server { server {
#headers are defined in the http-config block above, or you can set them manually here. #headers are defined in the http-config block above, or you can set them manually here.
#header "Server" "nginx"; #header "Server" "nginx";
output {
prepend "content=";
append "</script>\n";
print;
}
} }