Jun 16th update

This commit is contained in:
noam
2023-01-17 11:34:09 +02:00
parent 90bcc544a2
commit ad04b8d063
168 changed files with 64034 additions and 932 deletions

View File

@@ -154,6 +154,10 @@ private:
stringstream handler_path;
handler_path << handler_path_format;
switch(type) {
case (AttachmentType::SQUID_ATT_ID): {
handler_path << "squid-http-transaction-handler-";
break;
}
case (AttachmentType::NGINX_ATT_ID): {
handler_path << "http-transaction-handler-";
break;
@@ -177,7 +181,8 @@ private:
stringstream registration_command;
registration_command<< registration_format;
switch(type) {
case (AttachmentType::NGINX_ATT_ID): {
case (AttachmentType::SQUID_ATT_ID):
case (AttachmentType::NGINX_ATT_ID):{
registration_command << "/etc/cp/HttpTransactionHandler/cp-nano-http-transaction-handler";
break;
}