diff options
author | 1998-10-01 17:29:26 +0000 | |
---|---|---|
committer | 1998-10-01 17:29:26 +0000 | |
commit | 76aa4e8f936aed9d20ab3a21a29f731e7181bffa (patch) | |
tree | 496fd2d60052beabc00246e234251ab737051fce | |
parent | Config and wrapper for 1.3.2. (diff) | |
download | wireguard-openbsd-76aa4e8f936aed9d20ab3a21a29f731e7181bffa.tar.xz wireguard-openbsd-76aa4e8f936aed9d20ab3a21a29f731e7181bffa.zip |
fix retarded default paths
-rw-r--r-- | usr.sbin/httpd/src/include/httpd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/httpd/src/include/httpd.h b/usr.sbin/httpd/src/include/httpd.h index 6fa7757a2d0..0323072bf0a 100644 --- a/usr.sbin/httpd/src/include/httpd.h +++ b/usr.sbin/httpd/src/include/httpd.h @@ -86,7 +86,7 @@ extern "C" { /* Set default for Windows file system */ #define HTTPD_ROOT "/apache" #else -#define HTTPD_ROOT "/usr/local/apache" +#define HTTPD_ROOT "/var/www" #endif #endif /* HTTPD_ROOT */ @@ -98,7 +98,7 @@ extern "C" { /* Set default for OS/2 file system */ #define DOCUMENT_LOCATION HTTPD_ROOT "/docs" #else -#define DOCUMENT_LOCATION HTTPD_ROOT "/htdocs" +#define DOCUMENT_LOCATION HTTPD_ROOT "/var/www/htdocs" #endif #endif /* DOCUMENT_LOCATION */ |