diff options
author | jkh <jkh@FreeBSD.org> | 1995-11-12 20:39:18 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-11-12 20:39:18 +0000 |
commit | e083a2b1fb6d463358d92512e84ad9dc8f542b10 (patch) | |
tree | 739a55912004d208f9ebe292f551c7dc4d347091 /release | |
parent | 5f9f53ab5b33dfd581b0af4a4869fa372f927c22 (diff) | |
download | FreeBSD-src-e083a2b1fb6d463358d92512e84ad9dc8f542b10.zip FreeBSD-src-e083a2b1fb6d463358d92512e84ad9dc8f542b10.tar.gz |
Put HTML files into data/ instead of htdocs/
Diffstat (limited to 'release')
-rw-r--r-- | release/sysinstall/apache.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/release/sysinstall/apache.c b/release/sysinstall/apache.c index 901fdb9..9e2c80b 100644 --- a/release/sysinstall/apache.c +++ b/release/sysinstall/apache.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: apache.c,v 1.10 1995/11/03 12:02:22 jkh Exp $ + * $Id: apache.c,v 1.11 1995/11/05 01:00:27 jkh Exp $ * * Copyright (c) 1995 * Coranth Gryphon. All rights reserved. @@ -60,7 +60,7 @@ /* These change if the package uses different defaults */ #define APACHE_BASE "/usr/local/www" -#define DATA_SUBDIR "htdocs" +#define DATA_SUBDIR "data" #define CONFIG_SUBDIR "config" /* Set up the structure to hold configuration information */ @@ -241,7 +241,7 @@ apacheOpenDialog() strcpy(tconf.userdir, "public_html"); strcpy(tconf.welcome, "index.html"); strcpy(tconf.maxcon, "150"); - sprintf(tconf.docroot, "%s/%s", APACHE_BASE,DATA_SUBDIR); + sprintf(tconf.docroot, "%s/%s", APACHE_BASE, DATA_SUBDIR); /* Loop over the layout list, create the objects, and add them onto the chain of objects that dialog uses for traversal*/ @@ -445,7 +445,7 @@ configApache(char *unused) tconf.docroot[strlen(tconf.docroot)-1] = '\0'; if (!tconf.docroot[0]) - sprintf(tconf.docroot,"%s/%s",APACHE_BASE,DATA_SUBDIR); + sprintf(tconf.docroot,"%s/%s",APACHE_BASE, DATA_SUBDIR); /*** If DocRoot does not exist, create it ***/ |