aboutsummaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
authorOmar Polo <op@omarpolo.com>2023-08-08 17:35:11 +0000
committerOmar Polo <op@omarpolo.com>2023-08-08 17:35:11 +0000
commit03d671e2aa44271e6feb5dc6b1f20f833735d917 (patch)
tree73779cef04bfa2f7e4e875e30a200f32c102ec9f /parse.y
parent4f7492c36e5ae600b0e0ad2b2d271712d55e34b9 (diff)
implement fastcgi strip number
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y3
1 files changed, 3 insertions, 0 deletions
diff --git a/parse.y b/parse.y
index 82c9cbc..fcb0219 100644
--- a/parse.y
+++ b/parse.y
@@ -601,6 +601,9 @@ fastcgiopt : PARAM string '=' string {
free($3);
free($5);
}
+ | STRIP NUM {
+ loc->fcgi_strip = $2;
+ }
;
types : TYPES '{' optnl mediaopts_l '}' ;