From 5ecd7d5e39f6ad874940bfa83947ccaa1852edde Mon Sep 17 00:00:00 2001 From: Not Zed Date: Fri, 3 May 2019 07:26:58 +0930 Subject: [PATCH] Added script names to config.h.in --- config.h.in | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/config.h.in b/config.h.in index 1900202..95c344f 100644 --- a/config.h.in +++ b/config.h.in @@ -20,11 +20,8 @@ // Whether to create a FastCGI binary #define USE_FCGI 1 -// Name of main installed binary -#define blog_bin "blog.fcgi" -//#define blog_bin "blog" -// If cgi mode is used, name of command that handles tag urls (softlink to blog_bin) -#define tag_bin "tag" -// If cgi mode is used, name of command that handles post urls (softlink to blog_bin) -#define post_bin "post" - +// The name of the script from cgi SCRIPT_NAME variable. +// This must match the ScriptAlias key +#define BLOG_SCRIPT "/blog" +#define TAG_SCRIPT "/tag" +#define POST_SCRIPT "/post" -- 2.39.2