From: Not Zed Date: Thu, 2 May 2019 21:56:58 +0000 (+0930) Subject: Added script names to config.h.in X-Git-Url: https://code.zedzone.au/cvs?a=commitdiff_plain;h=5ecd7d5e39f6ad874940bfa83947ccaa1852edde;p=blogz Added script names to config.h.in --- 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"