You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
457 B
14 lines
457 B
6 years ago
|
--- a/server/core.c 2013/07/24 09:49:38 1506473
|
||
|
+++ b/server/core.c 2013/07/24 09:51:14 1506474
|
||
|
@@ -1481,7 +1481,9 @@
|
||
|
conf->ap_document_root = arg;
|
||
|
}
|
||
|
else {
|
||
|
- return "DocumentRoot must be a directory";
|
||
|
+ return apr_psprintf(cmd->pool,
|
||
|
+ "DocumentRoot '%s' is not a directory, or is not readable",
|
||
|
+ arg);
|
||
|
}
|
||
|
}
|
||
|
return NULL;
|