mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
936af4387d
patch-au corrects a problem when either ResourceConfig/AccessConfig is set to the apache configuration file (${PREFIX}/etc/apache/httpd.conf). Without this patch, if you set the apache server to listen to alterate ports the server would fail to start and the error log would contain: [crit] (48)Address already in use: make_sock: could not bind to port 8000 ResourceConfig/AccessConfig can't be set to /dev/null. The fpsrvadm.exe will not be able to obtain the DocumnetRoot from the ResourceConfig file (/dev/null). PR: 13673 Submitted by: maintainer
17 lines
662 B
Plaintext
17 lines
662 B
Plaintext
--- src/include/httpd.h.orig Mon Aug 16 12:57:53 1999
|
|
+++ src/include/httpd.h Mon Sep 6 13:12:55 1999
|
|
@@ -774,7 +774,12 @@
|
|
|
|
char *unparsed_uri; /* the uri without any parsing performed */
|
|
char *uri; /* the path portion of the URI */
|
|
- char *filename;
|
|
+ char *execfilename; /* physical filename to exec */
|
|
+ char *filename; /* logical filename to exec -- always the same
|
|
+ * except for FrontPage CGI programs where we
|
|
+ * will execute the CGI program in
|
|
+ * /usr/local/frontpage....
|
|
+ */
|
|
char *path_info;
|
|
char *args; /* QUERY_ARGS, if any */
|
|
struct stat finfo; /* ST_MODE set to zero if no such file */
|