Added script names to config.h.in
authorNot Zed <notzed@gmail.com>
Thu, 2 May 2019 21:56:58 +0000 (07:26 +0930)
committerNot Zed <notzed@gmail.com>
Thu, 2 May 2019 21:56:58 +0000 (07:26 +0930)
config.h.in

index 1900202..95c344f 100644 (file)
 // 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"