// 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"