diff options
Diffstat (limited to 'build')
-rw-r--r-- | build/mkconfNW.awk | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/build/mkconfNW.awk b/build/mkconfNW.awk index f9d4b33d84..73025fcd56 100644 --- a/build/mkconfNW.awk +++ b/build/mkconfNW.awk @@ -20,6 +20,8 @@ BEGIN { B["errordir"] = A["ServerRoot"]"/"A["errordir"] B["proxycachedir"] = A["ServerRoot"]"/"A["proxycachedir"] B["cgidir"] = A["ServerRoot"]"/"A["cgidir"] + B["listen_stmt_1"] = "Listen "A["Port"] + B["listen_stmt_2"] = "" } /@@LoadModule@@/ { @@ -71,6 +73,11 @@ match ($0,/@exp_.*@/) { sub(/@exp_.*@/,B[s],$0) } +match ($0,/@nonssl_.*@/) { + s=substr($0,RSTART+8,RLENGTH-9) + sub(/@nonssl_.*@/,B[s],$0) +} + { print } |