|
diff --git a/cgit.c b/cgit.c index a92383d..36777b5 100644 --- a/ cgit.c+++ b/ cgit.c |
|
@@ -253,6 +253,7 @@ static void prepare_context(struct cgit_context *ctx) |
253 | ctx->env.cgit_config = xstrdupn(getenv("CGIT_CONFIG")); |
253 | ctx->env.cgit_config = xstrdupn(getenv("CGIT_CONFIG")); |
254 | ctx->env.http_host = xstrdupn(getenv("HTTP_HOST")); |
254 | ctx->env.http_host = xstrdupn(getenv("HTTP_HOST")); |
255 | ctx->env.https = xstrdupn(getenv("HTTPS")); |
255 | ctx->env.https = xstrdupn(getenv("HTTPS")); |
| |
256 | ctx->env.no_http = xstrdupn(getenv("NO_HTTP")); |
256 | ctx->env.path_info = xstrdupn(getenv("PATH_INFO")); |
257 | ctx->env.path_info = xstrdupn(getenv("PATH_INFO")); |
257 | ctx->env.query_string = xstrdupn(getenv("QUERY_STRING")); |
258 | ctx->env.query_string = xstrdupn(getenv("QUERY_STRING")); |
258 | ctx->env.request_method = xstrdupn(getenv("REQUEST_METHOD")); |
259 | ctx->env.request_method = xstrdupn(getenv("REQUEST_METHOD")); |
@@ -445,6 +446,9 @@ static void cgit_parse_args(int argc, const char **argv) |
445 | if (!strcmp(argv[i], "--nocache")) { |
446 | if (!strcmp(argv[i], "--nocache")) { |
446 | ctx.cfg.nocache = 1; |
447 | ctx.cfg.nocache = 1; |
447 | } |
448 | } |
| |
449 | if (!strcmp(argv[i], "--nohttp")) { |
| |
450 | ctx.env.no_http = "1"; |
| |
451 | } |
448 | if (!strncmp(argv[i], "--query=", 8)) { |
452 | if (!strncmp(argv[i], "--query=", 8)) { |
449 | ctx.qry.raw = xstrdup(argv[i]+8); |
453 | ctx.qry.raw = xstrdup(argv[i]+8); |
450 | } |
454 | } |
|