Newer
Older
12001
12002
12003
12004
12005
12006
12007
12008
12009
12010
12011
12012
12013
12014
12015
12016
12017
12018
12019
12020
12021
12022
12023
12024
12025
12026
12027
12028
12029
12030
12031
12032
12033
12034
12035
12036
12037
12038
12039
12040
12041
12042
12043
12044
12045
12046
12047
12048
12049
12050
12051
12052
12053
12054
12055
12056
12057
12058
12059
12060
12061
12062
12063
12064
12065
12066
12067
12068
12069
12070
12071
12072
12073
12074
12075
12076
12077
12078
12079
12080
12081
12082
12083
12084
12085
12086
12087
12088
12089
12090
12091
12092
12093
12094
12095
12096
12097
12098
12099
12100
12101
12102
12103
12104
12105
12106
12107
12108
12109
12110
12111
12112
12113
12114
12115
12116
12117
12118
12119
12120
12121
12122
12123
12124
12125
12126
12127
12128
12129
12130
12131
12132
12133
12134
12135
12136
12137
12138
12139
12140
12141
12142
12143
12144
12145
12146
12147
12148
12149
12150
12151
12152
12153
12154
12155
12156
12157
12158
12159
12160
12161
12162
12163
12164
12165
12166
12167
12168
12169
12170
12171
12172
12173
12174
12175
12176
12177
12178
12179
12180
12181
12182
12183
12184
12185
12186
12187
12188
12189
12190
12191
12192
12193
12194
12195
12196
12197
12198
12199
12200
12201
12202
12203
12204
12205
12206
12207
12208
12209
12210
12211
12212
12213
12214
12215
12216
12217
12218
12219
12220
12221
12222
12223
12224
12225
12226
12227
12228
12229
12230
12231
12232
12233
12234
12235
12236
12237
12238
12239
12240
12241
12242
12243
12244
12245
12246
12247
12248
12249
12250
12251
12252
12253
12254
12255
12256
12257
12258
12259
12260
12261
12262
12263
12264
12265
12266
12267
12268
12269
12270
12271
12272
12273
12274
12275
12276
12277
12278
12279
12280
12281
12282
12283
12284
12285
12286
12287
12288
12289
12290
12291
12292
12293
12294
12295
12296
12297
12298
12299
12300
12301
12302
12303
12304
12305
12306
12307
12308
12309
12310
12311
12312
12313
12314
12315
12316
12317
12318
12319
12320
12321
12322
12323
12324
12325
12326
12327
12328
12329
12330
12331
12332
12333
12334
12335
12336
12337
12338
12339
12340
12341
12342
12343
12344
12345
12346
12347
12348
12349
12350
12351
12352
12353
12354
12355
12356
12357
12358
12359
12360
12361
12362
12363
12364
12365
12366
12367
12368
12369
12370
12371
12372
12373
12374
12375
12376
12377
12378
12379
12380
12381
12382
12383
12384
12385
12386
12387
12388
12389
12390
12391
12392
12393
12394
12395
12396
12397
12398
12399
12400
12401
12402
12403
12404
12405
12406
12407
12408
12409
12410
12411
12412
12413
12414
12415
12416
12417
12418
12419
12420
12421
12422
12423
12424
12425
12426
12427
12428
12429
12430
12431
12432
12433
12434
12435
12436
12437
12438
12439
12440
12441
12442
12443
12444
12445
12446
12447
12448
12449
12450
12451
12452
12453
12454
12455
12456
12457
12458
12459
12460
12461
12462
12463
12464
12465
12466
12467
12468
12469
12470
12471
12472
12473
12474
12475
12476
12477
12478
12479
12480
12481
12482
12483
12484
12485
12486
12487
12488
12489
12490
12491
12492
12493
12494
12495
12496
12497
12498
12499
12500
12501
12502
12503
12504
12505
12506
12507
12508
12509
12510
12511
12512
12513
12514
12515
12516
12517
12518
12519
12520
12521
12522
12523
12524
12525
12526
12527
12528
12529
12530
12531
12532
12533
12534
12535
12536
12537
12538
12539
12540
12541
12542
12543
12544
12545
12546
12547
12548
12549
12550
12551
12552
12553
12554
12555
12556
12557
12558
12559
12560
12561
12562
12563
12564
12565
12566
12567
12568
12569
12570
12571
12572
12573
12574
12575
12576
12577
12578
12579
12580
12581
12582
12583
12584
12585
12586
12587
12588
12589
12590
12591
12592
12593
12594
12595
12596
12597
12598
12599
12600
12601
12602
12603
12604
12605
12606
12607
12608
12609
12610
12611
12612
12613
12614
12615
12616
12617
12618
12619
12620
12621
12622
12623
12624
12625
12626
12627
12628
12629
12630
12631
12632
12633
12634
12635
12636
12637
12638
12639
12640
12641
12642
12643
12644
12645
12646
12647
12648
12649
12650
12651
12652
12653
12654
12655
12656
12657
12658
12659
12660
12661
12662
12663
12664
12665
12666
12667
12668
12669
12670
12671
12672
12673
12674
12675
12676
12677
12678
12679
12680
12681
12682
12683
12684
12685
12686
12687
12688
12689
12690
12691
12692
12693
12694
12695
12696
12697
12698
12699
12700
12701
12702
12703
12704
12705
12706
12707
12708
12709
12710
12711
12712
12713
12714
12715
12716
12717
12718
12719
12720
12721
12722
12723
12724
12725
12726
12727
12728
12729
12730
12731
12732
12733
12734
12735
12736
12737
12738
12739
12740
12741
12742
12743
12744
12745
12746
12747
12748
12749
12750
12751
12752
12753
12754
12755
12756
12757
12758
12759
12760
12761
12762
12763
12764
12765
12766
12767
12768
12769
12770
12771
12772
12773
12774
12775
12776
12777
12778
12779
12780
12781
12782
12783
12784
12785
12786
12787
12788
12789
12790
12791
12792
12793
12794
12795
12796
12797
12798
12799
12800
12801
12802
12803
12804
12805
12806
12807
12808
12809
12810
12811
12812
12813
12814
12815
12816
12817
12818
12819
12820
12821
12822
12823
12824
12825
12826
12827
12828
12829
12830
12831
12832
12833
12834
12835
12836
12837
12838
12839
12840
12841
12842
12843
12844
12845
12846
12847
12848
12849
12850
12851
12852
12853
12854
12855
12856
12857
12858
12859
12860
12861
12862
12863
12864
12865
12866
12867
12868
12869
12870
12871
12872
12873
12874
12875
12876
12877
12878
12879
12880
12881
12882
12883
12884
12885
12886
12887
12888
12889
12890
12891
12892
12893
12894
12895
12896
12897
12898
12899
12900
12901
12902
12903
12904
12905
12906
12907
12908
12909
12910
12911
12912
12913
12914
12915
12916
12917
12918
12919
12920
12921
12922
12923
12924
12925
12926
12927
12928
12929
12930
12931
12932
12933
12934
12935
12936
12937
12938
12939
12940
12941
*) Bugs which were fixed:
a) numerous mod_proxy bugs
b) CGI early-termination bug [Ben Laurie]
c) Keepalives not working with virtual hosts
d) RefererIgnore problems
e) closing fd's twice in mod_include (causing core dumps on
Linux and elsewhere).
Changes with Apache 1.1b2
*) Bugfixes:
a) core dumps in mod_digest
b) truncated hostnames/ip address in the logs
c) relative URL's in mod_imap map files
Changes with Apache 1.1b1
*) Not listed. See <http://www.apache.org/docs/new_features_1_1.html>
Changes with Apache 1.0.3
*) Internal redirects which occur in mod_dir.c now preserve the
query portion of a request (the bit after the question mark).
[Adam Sussman]
*) Escape active characters '<', '>' and '&' in html output in
directory listings, error messages and redirection links.
[David Robinson]
*) Apache will now work with LynxOS 2.3 and later [Steven Watt]
*) Fix for POSIX compliance in waiting for processes in alloc.c.
[Nick Williams]
*) setsockopt no longer takes a const declared argument [Martijn Koster]
*) Reset timeout timer after each successful fwrite() to the network.
This patch adds a reset_timeout() procedure that is called by
send_fd() to reset the timeout ever time data is written to the net.
[Nathan Schrenk]
*) timeout() signal handler now checks for SIGPIPE and reports
lost connections in a more user friendly way. [Rob Hartill]
*) Location of the "scoreboard" file which used to live in /tmp is
now configurable (for OSes that can't use mmap) via ScoreBoardFile
which works similar to PidFile (in httpd.conf) [Rob Hartill]
*) Include sys/resource.h in the correct place for SunOS4 [Sameer Parekh]
*) the pstrcat call in mod_cookies.c didn't have an ending NULL,
which caused a SEGV with cookies enabled
*) Output warning when MinSpareServers is set to <= 0 and change it to 1
[Rob Hartill]
*) Log the UNIX textual error returned by some system calls, in
particular errors from accept() [David Robinson]
*) Add strerror function to util.c for SunOS4 [Randy Terbush]
Changes with Apache 1.0.2
*) patch to get Apache compiled on UnixWare 2.x, recommended as
a temporary measure, pending rewrite of rfc931.c. [Chuck Murcko]
*) Fix get_basic_auth_pw() to set the auth_type of the request.
[David Robinson]
*) past changes to http_config.c to only use the
setrlimit function on systems defining RLIMIT_NOFILE
broke the feature on SUNOS4. Now defines HAVE_RESOURCE
for SUNOS and prototypes the needed functions.
*) Remove uses of MAX_STRING_LEN/HUGE_STRING_LEN from several routines.
[David Robinson]
*) Fix use of pointer to scratch memory. [Cliff Skolnick]
*) Merge multiple headers from CGI scripts instead of taking last
one. [David Robinson]
*) Add support for SCO 5. [Ben Laurie]
Changes with Apache 1.0.1
*) Silence mod_log_referer and mod_log_agent if not configured
[Randy Terbush]
*) Recursive includes can occur if the client supplies PATH_INFO data
and the server provider uses relative links; as file.html
relative to /doc.shtml/pathinfo is /doc.shtml/file.html. [David Robinson]
*) The replacement for initgroups() did not call {set,end}grent(). This
had two implications: if anything else used getgrent(), then
initgroups() would fail, and it was consuming a file descriptor.
[Ben Laurie]
*) On heavily loaded servers it was possible for the scoreboard to get
out of sync with reality, as a result of a race condition.
The observed symptoms are far more Apaches running than should
be, and heavy system loads, generally followed by catastrophic
system failure. [Ben Laurie]
*) Fix typo in license. [David Robinson]
Changes with Apache 1.0.0 23 Nov 1995
*) Not listed. See <http://www.apache.org/docs/new_features_1_0.html>
Changes with Apache 0.8.16 05 Nov 1995
*) New man page for 'httpd' added to support directory [David Robinson]
*) .htgroup files can have more than one line giving members for a
given group (each must have the group name in front), for NCSA
back-compatibility [Robert Thau]
*) Mutual exclusion around accept() is on by default for SVR4 systems
generally, since they generally can't handle multiple processes in
accept() on the same socket. This should cure flaky behavior on
a lot of those systems. [David Robinson]
*) AddType, AddEncoding, and AddLanguage directives take multiple
extensions on a single command line [David Robinson]
*) UserDir can be disabled for a given virtual host by saying
"UserDir disabled" in the <VirtualHost> section --- it was a bug
that this didn't work. [David Robinson]
*) Compiles on QNX [Ben Laurie]
*) Corrected parsing of ctime time format [David Robinson]
*) httpd does a perror() before exiting if it can't log its pid
to the PidFile, to make diagnosing the error a bit easier.
[David Robinson]
*) <!--#include file="..."--> can no longer include files in the
parent directory, for NCSA back-compatibility. [David Robinson]
*) '~' is *not* escaped in URIs generated for directory listings
[Roy Fielding]
*) Eliminated compiler warning in the imagemap module [Randy Terbush]
*) Fixed bug involving handling URIs with escaped %-characters
in redirects [David Robinson]
Changes with Apache 0.8.15 14 Oct 1995
*) Switched to new, simpler license
*) Eliminated core dumps with improperly formatted DBM group files [Mark Cox]
*) Don't allow requests for ordinary files to have PATH_INFO [Ben Laurie]
*) Reject paths containing %-escaped '%' or null characters [David Robinson]
*) Correctly handles internal redirects to files with names containing '%'
[David Robinson]
*) Repunctuated some error messages [Aram Mirzadeh, Andrew Wilson]
*) Use geteuid() rather than getuid() to see if we have root privilege,
so that server correctly resets privilege if run setuid root. [Andrew
Wilson]
*) Handle ftp: and telnet: URLs correctly in imagemaps (built-in module)
[Randy Terbush]
*) Fix relative URLs in imagemap files [Randy Terbush]
*) Somewhat better fix for the old "Alias /foo/ /bar/" business
[David Robinson]
*) Don't repeatedly open the ErrorLog if a bunch of <VirtualHost>
entries all name the same one. [David Robinson]
*) Fix directory listings with filenames containing unusual characters
[David Robinson]
*) Better URI-escaping for generated URIs in directories with filenames
containing unusual characters [Ben Laurie]
*) Fixed potential FILE* leak in http_main.c [Ben Laurie]
*) Unblock alarms on error return from spawn_child() [David Robinson]
*) Sample Config files have extra note for SCO users [Ben Laurie]
*) Configuration has note for HP-UX users [Rob Hartill]
*) Eliminated some bogus Linux-only #defines in conf.h [Aram Mirzadeh]
*) Nuked bogus #define in httpd.h [David Robinson]
*) Better test for whether a system has setrlimit() [David Robinson]
*) Calls update_child_status() after reopen_scoreboard() [David Robinson]
*) Doesn't send itself SIGHUP on startup when run in the -X debug-only mode
[Ben Laurie]
Changes with Apache 0.8.14 19 Sep 1995
*) Compiles on SCO ODT 3.0 [Ben Laurie]
*) AddDescription works (better) [Ben Laurie]
*) Leaves an intelligible error diagnostic when it can't set group
privileges on standalone startup [Andrew Wilson]
*) Compiles on NeXT again --- the 0.8.13 RLIMIT patch was failing on
that machine, which claims to be BSD but does not support RLIMIT.
[Randy Terbush]
*) gcc -Wall no longer complains about an unused variable when util.c
is compiled with -DMINIMAL_DNS [Andrew Wilson]
*) Nuked another compiler warning for -Wall on Linux [Aram Mirzadeh]
Changes with Apache 0.8.13 07 Sep 1995
*) Make IndexIgnore *work* (ooops) [Jarkko Torppa]
*) Have built-in imagemap code recognize & honor Point directive [James
Cloos]
*) Generate cleaner directory listings in directories with a mix of
long and short filenames [Rob Hartill]
*) Properly initialize dynamically loaded modules [Royston Shufflebotham]
*) Properly default ServerName for virtual servers [Robert Thau]
*) Rationalize handling of BSD in conf.h and elsewhere [Randy Terbush,
Paul Richards and a cast of thousands...]
*) On self-identified BSD systems (we don't try to guess any more),
allocate a few extra file descriptors per virtual host with setrlimit,
if we can, to avoid running out. [Randy Terbush]
*) Write 22-character lock file name into buffer with enough space
on startup [Konstantin Olchanski]
*) Use archaic setpgrp() interface on NeXT, which requires it [Brian
Pinkerton]
*) Suppress -Wall warning by casting const away in util.c [Aram Mirzadeh]
*) Suppress -Wall warning by initializing variable in negotiation code
[Tobias Weingartner]
Changes with Apache 0.8.12 31 Aug 1995
*) Doesn't pause three seconds after including a CGI script which is
too slow to die off (this is done by not even trying to kill off
subprocesses, including the SIGTERM/pause/SIGKILL routine, until
after the entire document has been processed). [Robert Thau]
*) Doesn't do SSI if Options Includes is off. (Ooops). [David Robinson]
*) Options IncludesNoExec allows inclusion of at least text/* [Roy Fielding]
*) Allows .htaccess files to override <Directory> sections naming the
same directory [David Robinson]
*) Removed an efficiency hack in sub_req_lookup_uri which was
causing certain extremely marginal cases (e.g., ScriptAlias of a
*particular* index.html file) to fail. [David Robinson]
*) Doesn't log an error when the requested URI requires
authentication, but no auth header line was supplied by the
client; this is a normal condition (the client doesn't no auth is
needed here yet). [Robert Thau]
*) Behaves more sanely when the name server loses its mind [Sean Welch]
*) RFC931 code compiles cleanly on old BSDI releases [Randy Terbush]
*) RFC931 code no longer passes out name of prior clients on current
requests if the current request came from a server that doesn't
do RFC931. [David Robinson]
*) Configuration script accepts "Module" lines with trailing whitespace.
[Robert Thau]
*) Cleaned up compiler warning from mod_access.c [Robert Thau]
*) Cleaned up comments in mod_cgi.c [Robert Thau]
Changes with Apache 0.8.11 24 Aug 1995
*) Wildcard <Directory> specifications work. [Robert Thau]
*) Doesn't loop for buggy CGI on Solaris [Cliff Skolnick]
*) Symlink checks (FollowSymLinks off, or SymLinkIfOwnerMatch) always check
the file being requested itself, in addition to the directories leading
up to it. [Robert Thau]
*) Logs access failures due to symlink checks or invalid client address
in the error log [Roy Fielding, Robert Thau]
*) Symlink checks deal correctly with systems where lstat of
"/path/to/some/link/" follows the link. [Thau, Fielding]
*) Doesn't reset DirectoryIndex to 'index.html' when
other directory options are set in a .htaccess file. [Robert Thau]
*) Clarified init code and nuked bogus warning in mod_access.c
[Florent Guillaume]
*) Corrected several directives in sample srm.conf
--- includes corrections to directory indexing icon-related directives
(using unknown.gif rather than unknown.xbm as the DefaultIcon, doing
icons for encodings right, and turning on AddEncoding by default).
[Roy Fielding]
*) Corrected descriptions of args to AddIcon and AddAlt in command table
[James Cloos]
*) INSTALL & README mention "contributed modules" directory [Brian
Behlendorf]
*) Fixed English in the license language... "for for" --> "for".
[Roy Fielding]
*) Fixed ScriptAlias/Alias interaction by moving ScriptAlias handling to
mod_alias.c, merging it almost completely with handling of Alias, and
adding a 'notes' field to the request_rec which allows the CGI module
to discover whether the Alias module has put this request through
ScriptAlias (which it needs to know for back-compatibility, as the old
NCSA code did not check Options ExecCGI in ScriptAlias directories).
[Robert Thau]
Changes with Apache 0.8.10 18 Aug 1995
*) AllowOverride applies to the named directory, and not just
subdirectories. [David Robinson]
*) Do locking for accept() exclusion (on systems that need it)
using a special file created for the purpose in /usr/tmp, and
not the error log; using the error log causes real problems
if it's NFS-mounted; this is known to be the cause of a whole
lot of "server hang" problems with Solaris. [David Robinson;
thanks to Merten Schumann for help diagnosing the problem].
Changes with Apache 0.8.9 12 Aug 1995
*) Compiles with -DMAXIMUM_DNS ---- ooops! [Henrik Mortensen]
*) Nested includes see environment variables of the including document,
for NCSA bug-compatibility (some sites have standard footer includes
which try to print out the last-modified date). [Eric Hagberg/Robert
Thau]
*) <!--exec cgi="/some/uri/here"--> always treats the item named by the
URI as a CGI script, even if it would have been treated as something
else if requested directly, for NCSA back-compatibility. (Note that
this means that people who know the name of the script can see the
code just by asking for it). [Robert Thau]
*) New version of dbmmanage script included in support directory as
dbmmanage.new.
*) Check if scoreboard file couldn't be opened, and say so, rather
then going insane [David Robinson]
*) POST to CGI works on A/UX [Jim Jagielski]
*) AddIcon and AddAlt commands work properly [Rob Hartill]
*) NCSA server push works properly --- the Arena bug compatibility
workaround, which broke it, is gone (use -DARENA_BUG_WORKAROUND
if you still want the workaround). [Rob Hartill]
*) If client didn't submit any Accept-encodings, ignore encodings in
content negotiation. (NB this will all have to be reworked anyway
for the new HTTP draft). [Florent Guillaume]
*) Don't dump core when trying to log timed-out requests [Jim Jagielski]
*) Really honor CacheNegotiatedDocs [Florent Guillaume]
*) Give Redirect priority over Alias, for NCSA bug compatibility
[David Robinson]
*) Correctly set PATH_TRANSLATED in all cases from <!--#exec cmd=""-->,
paralleling earlier bug fix for CGI [David Robinson]
*) If DBM auth is improperly configured, report a server error and don't
dump core.
*) Deleted FCNTL_SERIALIZED_ACCEPTS from conf.h entry for A/UX;
it seems to work well enough without it (even in a 10 hits/sec
workout), and the overhead for the locking under A/UX is
alarmingly high (though it is very low on other systems).
[Eric Hagberg, Jim Jagielski]
*) Fixed portability problems with mod_cookies.c [Cliff Skolnick]
*) Further de-Berklize mod_cookies.c; change the bogus #include. [Brian
Behlendorf/Eric Hagberg]
*) More improvements to default Configuration for A/UX [Jim Jagielski]
*) Compiles clean on NEXT [Rob Hartill]
*) Compiles clean on SGI [Robert Thau]
Changes with Apache 0.8.8 08 Aug 1995
*) SunOS library prototypes now never included unless explicitly
requested in the configuration (via -DSUNOS_LIB_PROTOTYPES);
people using GNU libc on SunOS are screwed by prototypes for the
standard library.
(Those who wish to compile clean with gcc -Wall on a standard
SunOS setup need the prototypes, and may obtain them using
-DSUNOS_LIB_PROTOTYPES. Those wishing to use -Wall on a system
with nonstandard libraries are presumably competent to make their
own arrangements).
*) Strips trailing '/' characters off both args to the Alias command,
to make 'Alias /foo/ /bar/' work.
Changes with Apache 0.8.7 03 Aug 1995
*) Don't hang when restarting with a child from 'TransferLog "|..."' running
[reported by David Robinson]
*) Compiles clean on OSF/1 [David Robinson]
*) Added some of the more recent significant changes (AddLanguage stuff,
experimental LogFormat support) to CHANGES file in distribution root
directory
Changes with Apache 0.8.6 02 Aug 1995
*) Deleted Netscape reload workaround --- it's in violation of HTTP specs.
(If you actually wanted a conditional GET which bypassed the cache, you
couldn't get it). [Reported by Roy Fielding]
*) Properly terminate headers on '304 Not Modified' replies to conditional
GETs --- no browser we can find cares much, but the CERN proxy chokes.
[Reported by Cliff Skolnick; fix discovered independently by Rob Hartill]
*) httpd -v doesn't call itself "Shambhala". [Reported by Chuck Murcko]
*) SunOS lib-function prototypes in conf.h conditionalized on __GNUC__,
not __SUNPRO_C (they're needed to quiet gcc -Wall, but acc chokes on 'em,
and older versions don't set the __SUNPRO_C preprocessor variable). On
all other systems, these are never used anyway. [Reported by Mark Cox].
*) Scoreboard file (/tmp/htstatus.*) no longer publically writable.
Changes with Apache 0.8.5 01 Aug 1995
*) Added last-minute configurable log experiment, as optional module
*) Correctly set r->bytes_sent for HTTP/0.9 requests, so they get logged
properly. (One-line fix to http_protocol.c).
*) Work around bogus behavior when reloading from Netscape.
It's Netscape's bug --- for some reason they expect a request with
If-modified-since: to not function as a conditional GET if it also
comes with Pragma: no-cache, which is way out of line with the HTTP
spec (according to Roy Fielding, the redactor).
*) Added parameter to set maximum number of server processes.
*) Added patches to make it work on A/UX. A/UX is *weird*. [Eric Hagberg,
Jim Jagielski]
*) IdentityCheck bugfix [Chuck Murcko].
*) Corrected cgi-src/Makefile entry for new imagemap script. [Alexei Kosut]
*) More sample config file corrections; add extension to AddType for
*.asis, move AddType generic description to its proper place, and
fix miscellaneous typos. [ Alexei Kosut ]
*) Deleted the *other* reference to the regents from the Berkeley
legal disclaimer (everyplace).
*) Nuked Shambhala name from src/README; had already cleaned it out
of everywhere else.
Changes with Apache 0.8.4
*) Changes to server-pool management parms --- renamed current
StartServers to MinSpareServers, created separate StartServers
parameter which means what it says, and renamed MaxServers to
MaxSpareServers (though the old name still works, for NCSA 1.4
back-compatibility). The old names were generally regarded as
too confusing. Also altered "docs" in sample config files.
*) More improvements to default config files ---
sample directives (commented out) for XBitHack, BindAddress,
CacheNegotiatedDocs, VirtualHost; decent set of AddLanguage
defaults, AddTypes for send-as-is and imagemap magic types, and
improvements to samples for DirectoryIndex [Alexei Kosut]
*) Yet more improvements to default config files --- changes to
Alexei's sample AddLanguage directives, and sample LanguagePriority
[ Florent Guillaume ]
*) Set config file locations properly if not set in httpd.conf
[ David Robinson ]
*) Don't escape URIs in internal redirects multiple times; don't
do that when translating PATH_INFO to PATH_TRANSLATED either.
[ David Robinson ]
*) Corrected spelling of "Required" in 401 error reports [Andrew Wilson]
Changes with Apache 0.8.3
*) Edited distribution README to *briefly* summarize installation
procedures, and give a pointer to the INSTALL file in the src/
directory.
*) Upgraded imagemap script in cgi-bin to 1.8 version from more
recent NCSA distributions.
*) Bug fix to previous bug fix --- if .htaccess file and <Directory>
exist for the same directory, use both and don't segfault. [Reported
by David Robinson]
*) Proper makefile dependencies [David Robinson]
*) Note (re)starts in error log --- reported by Rob Hartill.
*) Only call no2slash() after get_path_info() has been done, to
preserve multiple slashes in the PATH_INFO [NCSA compatibility,
reported by Andrew Wilson, though this one is probably a real bug]
*) Fixed mod_imap.c --- relative paths with base_uri referer don't
dump core when Referer is not supplied. [Randy Terbush]
*) Lightly edited sample config files to refer people to our documentation
instead of NCSA's, and to list Rob McCool as *original* author (also
deleted his old, and no doubt non-functional email address). Would be
nice to have examples of new features...
Changes with Apache 0.8.2 19 Jul 1995
*) Added AddLanuage code [Florent Guillaume]
*) Don't say "access forbidden" when a CGI script is not found. [Mark Cox]
*) All sorts of problems when MultiViews finds a directory. It would
be nice if mod_dir.c was robust enough to handle that, but for now,
just punt. [reported by Brian Behlendorf]
*) Wait for all children on restart, to make sure that the old socket
is gone and we can reopen it. [reported by Randy Terbush]
*) Imagemap module is enabled in default Configuration
*) RefererLog and UserAgentLog modules properly default the logfile
[Randy Terbush]
*) Mark Cox's mod_cookies added to the distribution as an optional
module (commented out in the default Configuration, and noted as
an experiment, along with mod_dld). [Mark Cox]
*) Compiles on ULTRIX (a continuing battle...). [Robert Thau]
*) Fixed nasty bug in SIGTERM handling [reported by Randy Terbush]
*) Changed "Shambhala" to "Apache" in API docs. [Robert Thau]
*) Added new, toothier legal disclaimer. [Robert Thau; copied from BSD
license]
Changes with Apache 0.8.1
*) New imagemap module [Randy Terbush]
*) Replacement referer log module with NCSA-compatible RefererIgnore
[Matthew Gray again]
*) Don't mung directory listings with very long filenames.
[Florent Guillaume]
Changes with Apache 0.8.0 (nee Shambhala 0.6.2) 16 Jul 1995
*) New config script. See INSTALL for info. [Robert Thau]
*) Scoreboard mechanism for regulating the number of extant server
processes. MaxServers and StartServers defaults are the same as
for NCSA, but the meanings are slightly different. (Actually,
I should probably lower the MaxServers default to 10).
Before asking for a new connection, each server process checks
the number of other servers which are also waiting for a
connection. If there are more than MaxServers, it quietly dies
off. Conversely, every second, the root, or caretaker, process
looks to see how many servers are waiting for a new connection;
if there are fewer than StartServers, it starts a new one. This
does not depend on the number of server processes already extant.
The accounting is arranged through a "scoreboard" file, named
/tmp/htstatus.*, on which each process has an independent file
descriptor (they need to seek without interference).
The end effect is that MaxServers is the maximum number of
servers on an *inactive* server machine, but more will be forked
off to handle unusually heavy loads (or unusually slow clients);
these will die off when they are no longer needed --- without
reverting to the overhead of full forking operation. There is a
hard maximum of 150 server processes compiled in, largely to
avoid forking out of control and dragging the machine down.
(This is arguably too high).
In my server endurance tests, this mechanism did not appear to
impose any significant overhead, even after I forced it to put the
scoreboard file on a normal filesystem (which might have more
overhead than tmpfs). [Robert Thau]
*) Set HTTP_FOO variables for SSI <!--#exec cmd-->s, not just CGI scripts.
[Cliff Skolnick]
*) Read .htaccess files even in directory with <Directory> section.
(Former incompatibility noted on mailing list, now fixed). [Robert
Thau]
*) "HEAD /" gives the client a "Bad Request" error message, rather
than trying to send no body *and* no headers. [Cliff Skolnick].
*) Don't produce double error reports for some very obscure cases
mainly involving auth configuration (the "all modules decline to
handle" case which is a sure sign of a server bug in most cases,
but also happens when authentication is badly misconfigured).
[Robert Thau]
*) Moved FCNTL_SERIALIZED_ACCEPT defines into conf.h (that's what
it's *for*, and this sort of thing really shouldn't be cluttering
up the Makefile). [Robert Thau]
*) Incidental code cleanups in http_main.c --- stop dragging
sa_client around; just declare it where used. [Robert Thau]
*) Another acc-related fix. (It doesn't like const char
in some places...). [Mark Cox]
Changes with Shambhala 0.6.1 13 Jul 1995
*) Fixed auth_name-related typos in http_core.c [Brian Behlendorf]
Also, fixed auth typo in http_protocol.c unmasked by this fix.
*) Compiles clean with acc on SunOS [Paul Sutton]
*) Reordered modules in modules.c so that Redirect takes priority
over ScriptAlias, for NCSA bug-compatibility [Rob Hartill] ---
believe it or not, he has an actual site with a ScriptAlias and
a Redirect declared for the *exact same directory*. Even *my*
compatibility fetish wouldn't motivate me to fix this if the fix
required any effort, but it doesn't, so what the hey.
*) Fixed to properly default several server_rec fields for virtual
servers from the corresponding fields in the main server_rec.
[Cliff Skolnick --- 'port' was a particular irritant].
*) No longer kills off nph- child processes before they are
finished sending output. [Matthew Gray]
Changes with Shambhala 0.6.0 10 Jul 1995
*) Two styles of timeout --- hard and soft. soft_timeout()s just put
the connection to the client in an "aborted" state, but otherwise
allow whatever handlers are running to clean up. hard_timeout()s
abort the request in progress completely; anything not tied to some
resource pool cleanup will leak. They're still around because I
haven't yet come up with a more elegant way of handling
timeouts when talking to something that isn't the client. The
default_handler and the dir_handler now use soft timeouts, largely
so I can test the feature. [Robert Thau]
*) TransferLog "| my_postprocessor ..." seems to be there. Note that
the case of log handlers dying prematurely is probably handled VERY
gracelessly at this point, and if the logger stops reading input,
the server will hang. (It is known to correctly restart the
logging process on server restart; this is (should be!) going through
the same SIGTERM/pause/SIGKILL routine used to ding an errant CGI
script). [Robert Thau]
*) asis files supported (new module). [Robert Thau]
*) IdentityCheck code is compiled in, but has not been tested. (I
don't know anyone who runs identd). [Robert Thau]
*) PATH_INFO and PATH_TRANSLATED are not set unless some real PATH_INFO
came in with the request, for NCSA bug-compatibility. [Robert Thau]
*) Don't leak the DIR * on HEAD request for a directory. [Robert Thau]
*) Deleted the block_alarms() stuff from dbm_auth; no longer necessary,
as timeouts are not in scope. [Robert Thau]
*) quoted-string args in config files now handled correctly (doesn't drop
the last character). [Robert Thau; reported by Randy Terbush]
*) Fixed silly typo in http_main.c which was suddenly fatal in HP-UX.
How the hell did it ever work? [Robert Thau; reported by Rob Hartill]
*) mod_core.c --- default_type returns DEFAULT_TYPE (the compile-time
default default type); the former default default behavior when all
type-checkers defaulted had been a core dump. [Paul Sutton]
*) Copy filenames out of the struct dirent when indexing
directories. (On Linux, readdir() returns a pointer to the same
memory area every time). Fix is in mod_dir.c. [Paul Sutton]
Changes with Shambhala 0.5.3 [not released]
*) Default response handler notes "file not found" in the error log,
if the file was not found. [Cliff Skolnick].
*) Another Cliff bug --- "GET /~user" now properly redirects (the userdir
code no longer sets up bogus PATH_INFO which fakes out the directory
handler). [Cliff Skolnick]
Changes with Shambhala 0.5.2 06 Jul 1995
*) Changes to http_main.c --- root server no longer plays silly
games with SIGCHLD, and so now detects and replaces dying
children. Child processes just die on SIGTERM, without taking
the whole process group with them. Potential problem --- if any
child process refuses to die, we hang in restart.
MaxRequestsPerChild may still not work, but it certainly works
better than it did before this! [Robert Thau]
*) mod_dir.c bug fixes: ReadmeName and HeaderName
work (or work better, at least); over-long description lines
properly terminated. [Mark Cox]
*) http_request.c now calls unescape_url() more places where it
should [Paul Sutton].
*) More directory handling bugs (reported by Cox)
Parent Directory link is now set correctly. [Robert Thau]
Changes with Shambhala 0.5.1 04 Jul 1995
*) Generalized cleanup interface in alloc.c --- any function can be
registered with alloc.c as a cleanup for a resource pool;
tracking of files and file descriptors has been reimplemented in
terms of this interface, so I can give it some sort of a test.
[Robert Thau]
*) More changes in alloc.c --- new cleanup_for_exec() function,
which tracks down and closes all file descriptors which have been
registered with the alloc.c machinery before the server exec()s a
child process for CGI or <!--#exec-->. CGI children now get
started with exactly three file descriptors open. Hopefully,
this cures the problem Rob H. was having with overly persistent
CGI connections. [Robert Thau]
*) Mutual exclusion around the accept() in child_main() --- this is
required on at least SGI, Solaris and Linux, and is #ifdef'ed in
by default on those systems only (-DFCNTL_SERIALIZED_ACCEPT).
This uses fcntl(F_SETLK,...) on the error log descriptor because
flock() on that descriptor won't work on systems which have BSD
flock() semantics, including (I think) Linux 1.3 and Solaris.
This does work on SunOS (when the server is idle, only one
process in the pool is waiting on accept()); it *ought* to work
on the other systems. [Robert Thau]
*) FreeBSD and BSDI portability tweaks [Chuck Murcko]
*) sizeof(*sa_client) bugfix from [Rob Hartill]
*) pstrdup(..., NULL) returns NULL, [Randy Terbush]
*) block_alarms() to avoid leaking the DBM* in dbm auth (this should
be unnecessary if I go to the revised timeout-handling scheme).
[Robert Thau]
*) For NCSA bug-compatibility, set QUERY_STRING env var (to a null
string) even if none came in with the request. [Robert Thau]
*) CHANGES file added to distribution ;-).
Changes with Shambhala 0.4.5
*) mod_dld --- early dynamic loading support [rst]
*) Add wildcard content handlers for XBITHACK; default_hander now
invoked with that mechanism (as a handler hanging off mod_core) [rst]
*) XBITHACK supported as a wildcard content-handler, and
configurable at run-time (not just at compile time, as in the
"patchy server" releases) [rst]
Changes with Shambhala 0.4.4 30 Jun 1995
*) Fixed basic thinkos in mod_dbm_auth.c [rst, reported by Mark Cox]
*) Handle Addtype x/y .z [rst, reported by Cox]
Changes with Shambhala 0.4.3
*) Fixed very dumb bug in mod_alias; "Alias" and "Redirect" are not
synonymous [rst, terbush]
Changes with Shambhala 0.4.1 28 Jun 1995
*) First-cut virtual host implementation; some refit in the config
reading code, and log management, was necessary to support this [rst]
*) Sub-pool machinery, originally added to avoid excessive storage
allocation on listings of large directories (which turned out to
be the problem that the 0.3 storage accounting was added to
find). Subrequests and mod_dir changed to use subpools. [rst]
*) More memory debugging --- free list consistency checks. [rst]
*) Added err_headers to request_rec, with support elsewhere [rst]
*) Other fixes to minor bugs in mod_dir and mod_includes [rst, terbush]
Changes with Shambhala 0.3 19 Jun 1995
*) Switch ONE_PROCESS to a runtime command-line option (-X)
*) Don't compile in mod_ai_backcompat by default
*) Switch name of server from Apache to Shambhala in Makefile
*) Add some accounting routines to track memory usage in the pools,
for debugging
Changes with Shambhala 0.2
*) Set DOCUMENT_ROOT CGI variable
*) Add single-process debugging, as a compile-time option (ONE_PROCESS)
*) Add critical section protection to handling of cleanup structures
in alloc.c [rst]
*) Significant code reorg within the server core to group related
functions together [rst]
*) Correctly handle clients that hang up before sending any request
[rst]
*) Replace dying child processes. [rst]
Changes with Shambhala 0.1 12 Jun 1995
Major rewrite of the pre-existing "patchy server" codebase, by
Robert Thau (rst). Significant portions of the server code, such
as configuration-file handling and HTTP authentication support,
were ripped out and rewritten from scratch. Code that was not
completely rewritten was significantly altered.
Major changes with this release include:
*) Introduction of the module API; in request handling, the central
machinery just dispatches to various modules, which actually do
most of the work. Configuration handling is similar --- modules
declare their own commands, and the central machinery just
dispatches to them.
API features from shambhala/0.1 were substantially unchanged in
Apache 1.0 and 1.1. (1.0 API features not yet present in this
release, such as wildcard handlers and subpools, were added in
subsequent Shambhala releases, and were also generally rst's
work).
*) This release included the following modules:
mod_access (access control --- allow and deny directives),
mod_alias (Alias and Redirect commands),
mod_auth (straight HTTP authentication, based on flat-files)
mod_auth_dbm (same, with dbm files)
mod_cgi (CGI scripts and, in this release, ScriptAlias)
mod_common_log (CLF access logs; later renamed mod_log_common)
mod_dir (directory indexing)
mod_include (server-side includes)
mod_mime (AddType directives)
mod_negotiation (content negotiation)
mod_userdir (support for users' public_html directories)
It also included a mod_ai_backcompat, which was a private hack
for back-compatibility with rst's own AI-lab servers.
All of these modules were substantially complete, and functional
or nearly so (a few, which implemented features not in use at
Thau's site, required patches of a few lines).
*) sub-request machinery, to allow modules to determine how other
modules would assign MIME types to a given file, or optionally
serve its content (this is heavily used by mod_dir, mod_include
and mod_negotiation).
*) Resource pool system for keeping track of memory allocated and
files opened in service of a particular request. Much of the
code in the modules (when they weren't rewrites) was adjusted to
replace a pervasive convention of using fixed-size buffers on
the stack with an equally pervasive convention of using memory
allocated with palloc().
*) Reorganization of data structures associated with a given
request to eliminate use of global variables and the troublesome
unmunge_name function (used in NCSA and early Apache releases to
attempt to determine the URI which mapped to a given filename
--- a difficult proposition, given that it is easy to produce
setups in which multiple URIs map to the same file).
*) Source files renamed and rearranged
*) Very simple pre-forking behavior --- parent process forked off a
fixed number of children, and then just waited for SIGHUP.
*) Other more minor changes too numerous to list.
This release included modified versions of a lot of code from the
Apache 0.6.4 public release, plus an early pre-forking patch
codeveloped by Robert Thau and Rob Hartill.
Changes with Apache 0.7.3 20 Jun 1995
*) There were a bunch of changes between Apache 0.6.4 and 0.7.3 that
were incorporated by Rob Hartill on the main branch while Robert Thau
worked on the Shambhala rewrite above. Most were merged into the
Shambala architecture after Apache 0.8.0.
Changes with Apache 0.6.4 13 May 1995
*) Patches by Rob Hartill, Cliff Skolnick, Randy Terbush, Robert Thau,
and others.
Changes with Apache 0.5.1 10 Apr 1995
Changes with Apache 0.4 02 Apr 1995
*) Patches by Brian Behlendorf, Andrew Wilson, Robert Thau,
and Rob Hartill.
Changes with Apache 0.3 24 Mar 1995
*) Patches by Robert Thau, David Robinson, Rob Hartill, and
Carlos Varela.
Changes with Apache 0.2 18 Mar 1995
*) Based on NCSA httpd 1.3 by Rob McCool and patches by CERT,
Roy Fielding, Robert Thau, Nicolas Pioch, David Robinson,
Brian Behlendorf, Rob Hartill, and Cliff Skolnick.