CHANGES 307 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828
  1. Changes with nginx 1.21.3 07 Sep 2021
  2. *) Change: optimization of client request body reading when using
  3. HTTP/2.
  4. *) Bugfix: in request body filters internal API when using HTTP/2 and
  5. buffering of the data being processed.
  6. Changes with nginx 1.21.2 31 Aug 2021
  7. *) Change: now nginx rejects HTTP/1.0 requests with the
  8. "Transfer-Encoding" header line.
  9. *) Change: export ciphers are no longer supported.
  10. *) Feature: OpenSSL 3.0 compatibility.
  11. *) Feature: the "Auth-SSL-Protocol" and "Auth-SSL-Cipher" header lines
  12. are now passed to the mail proxy authentication server.
  13. Thanks to Rob Mueller.
  14. *) Feature: request body filters API now permits buffering of the data
  15. being processed.
  16. *) Bugfix: backend SSL connections in the stream module might hang after
  17. an SSL handshake.
  18. *) Bugfix: the security level, which is available in OpenSSL 1.1.0 or
  19. newer, did not affect loading of the server certificates when set
  20. with "@SECLEVEL=N" in the "ssl_ciphers" directive.
  21. *) Bugfix: SSL connections with gRPC backends might hang if select,
  22. poll, or /dev/poll methods were used.
  23. *) Bugfix: when using HTTP/2 client request body was always written to
  24. disk if the "Content-Length" header line was not present in the
  25. request.
  26. Changes with nginx 1.21.1 06 Jul 2021
  27. *) Change: now nginx always returns an error for the CONNECT method.
  28. *) Change: now nginx always returns an error if both "Content-Length"
  29. and "Transfer-Encoding" header lines are present in the request.
  30. *) Change: now nginx always returns an error if spaces or control
  31. characters are used in the request line.
  32. *) Change: now nginx always returns an error if spaces or control
  33. characters are used in a header name.
  34. *) Change: now nginx always returns an error if spaces or control
  35. characters are used in the "Host" request header line.
  36. *) Change: optimization of configuration testing when using many
  37. listening sockets.
  38. *) Bugfix: nginx did not escape """, "<", ">", "\", "^", "`", "{", "|",
  39. and "}" characters when proxying with changed URI.
  40. *) Bugfix: SSL variables might be empty when used in logs; the bug had
  41. appeared in 1.19.5.
  42. *) Bugfix: keepalive connections with gRPC backends might not be closed
  43. after receiving a GOAWAY frame.
  44. *) Bugfix: reduced memory consumption for long-lived requests when
  45. proxying with more than 64 buffers.
  46. Changes with nginx 1.21.0 25 May 2021
  47. *) Security: 1-byte memory overwrite might occur during DNS server
  48. response processing if the "resolver" directive was used, allowing an
  49. attacker who is able to forge UDP packets from the DNS server to
  50. cause worker process crash or, potentially, arbitrary code execution
  51. (CVE-2021-23017).
  52. *) Feature: variables support in the "proxy_ssl_certificate",
  53. "proxy_ssl_certificate_key" "grpc_ssl_certificate",
  54. "grpc_ssl_certificate_key", "uwsgi_ssl_certificate", and
  55. "uwsgi_ssl_certificate_key" directives.
  56. *) Feature: the "max_errors" directive in the mail proxy module.
  57. *) Feature: the mail proxy module supports POP3 and IMAP pipelining.
  58. *) Feature: the "fastopen" parameter of the "listen" directive in the
  59. stream module.
  60. Thanks to Anbang Wen.
  61. *) Bugfix: special characters were not escaped during automatic redirect
  62. with appended trailing slash.
  63. *) Bugfix: connections with clients in the mail proxy module might be
  64. closed unexpectedly when using SMTP pipelining.
  65. Changes with nginx 1.19.10 13 Apr 2021
  66. *) Change: the default value of the "keepalive_requests" directive was
  67. changed to 1000.
  68. *) Feature: the "keepalive_time" directive.
  69. *) Feature: the $connection_time variable.
  70. *) Workaround: "gzip filter failed to use preallocated memory" alerts
  71. appeared in logs when using zlib-ng.
  72. Changes with nginx 1.19.9 30 Mar 2021
  73. *) Bugfix: nginx could not be built with the mail proxy module, but
  74. without the ngx_mail_ssl_module; the bug had appeared in 1.19.8.
  75. *) Bugfix: "upstream sent response body larger than indicated content
  76. length" errors might occur when working with gRPC backends; the bug
  77. had appeared in 1.19.1.
  78. *) Bugfix: nginx might not close a connection till keepalive timeout
  79. expiration if the connection was closed by the client while
  80. discarding the request body.
  81. *) Bugfix: nginx might not detect that a connection was already closed
  82. by the client when waiting for auth_delay or limit_req delay, or when
  83. working with backends.
  84. *) Bugfix: in the eventport method.
  85. Changes with nginx 1.19.8 09 Mar 2021
  86. *) Feature: flags in the "proxy_cookie_flags" directive can now contain
  87. variables.
  88. *) Feature: the "proxy_protocol" parameter of the "listen" directive,
  89. the "proxy_protocol" and "set_real_ip_from" directives in mail proxy.
  90. *) Bugfix: HTTP/2 connections were immediately closed when using
  91. "keepalive_timeout 0"; the bug had appeared in 1.19.7.
  92. *) Bugfix: some errors were logged as unknown if nginx was built with
  93. glibc 2.32.
  94. *) Bugfix: in the eventport method.
  95. Changes with nginx 1.19.7 16 Feb 2021
  96. *) Change: connections handling in HTTP/2 has been changed to better
  97. match HTTP/1.x; the "http2_recv_timeout", "http2_idle_timeout", and
  98. "http2_max_requests" directives have been removed, the
  99. "keepalive_timeout" and "keepalive_requests" directives should be
  100. used instead.
  101. *) Change: the "http2_max_field_size" and "http2_max_header_size"
  102. directives have been removed, the "large_client_header_buffers"
  103. directive should be used instead.
  104. *) Feature: now, if free worker connections are exhausted, nginx starts
  105. closing not only keepalive connections, but also connections in
  106. lingering close.
  107. *) Bugfix: "zero size buf in output" alerts might appear in logs if an
  108. upstream server returned an incorrect response during unbuffered
  109. proxying; the bug had appeared in 1.19.1.
  110. *) Bugfix: HEAD requests were handled incorrectly if the "return"
  111. directive was used with the "image_filter" or "xslt_stylesheet"
  112. directives.
  113. *) Bugfix: in the "add_trailer" directive.
  114. Changes with nginx 1.19.6 15 Dec 2020
  115. *) Bugfix: "no live upstreams" errors if a "server" inside "upstream"
  116. block was marked as "down".
  117. *) Bugfix: a segmentation fault might occur in a worker process if HTTPS
  118. was used; the bug had appeared in 1.19.5.
  119. *) Bugfix: nginx returned the 400 response on requests like
  120. "GET http://example.com?args HTTP/1.0".
  121. *) Bugfix: in the ngx_http_flv_module and ngx_http_mp4_module.
  122. Thanks to Chris Newton.
  123. Changes with nginx 1.19.5 24 Nov 2020
  124. *) Feature: the -e switch.
  125. *) Feature: the same source files can now be specified in different
  126. modules while building addon modules.
  127. *) Bugfix: SSL shutdown did not work when lingering close was used.
  128. *) Bugfix: "upstream sent frame for closed stream" errors might occur
  129. when working with gRPC backends.
  130. *) Bugfix: in request body filters internal API.
  131. Changes with nginx 1.19.4 27 Oct 2020
  132. *) Feature: the "ssl_conf_command", "proxy_ssl_conf_command",
  133. "grpc_ssl_conf_command", and "uwsgi_ssl_conf_command" directives.
  134. *) Feature: the "ssl_reject_handshake" directive.
  135. *) Feature: the "proxy_smtp_auth" directive in mail proxy.
  136. Changes with nginx 1.19.3 29 Sep 2020
  137. *) Feature: the ngx_stream_set_module.
  138. *) Feature: the "proxy_cookie_flags" directive.
  139. *) Feature: the "userid_flags" directive.
  140. *) Bugfix: the "stale-if-error" cache control extension was erroneously
  141. applied if backend returned a response with status code 500, 502,
  142. 503, 504, 403, 404, or 429.
  143. *) Bugfix: "[crit] cache file ... has too long header" messages might
  144. appear in logs if caching was used and the backend returned responses
  145. with the "Vary" header line.
  146. *) Workaround: "[crit] SSL_write() failed" messages might appear in logs
  147. when using OpenSSL 1.1.1.
  148. *) Bugfix: "SSL_shutdown() failed (SSL: ... bad write retry)" messages
  149. might appear in logs; the bug had appeared in 1.19.2.
  150. *) Bugfix: a segmentation fault might occur in a worker process when
  151. using HTTP/2 if errors with code 400 were redirected to a proxied
  152. location using the "error_page" directive.
  153. *) Bugfix: socket leak when using HTTP/2 and subrequests in the njs
  154. module.
  155. Changes with nginx 1.19.2 11 Aug 2020
  156. *) Change: now nginx starts closing keepalive connections before all
  157. free worker connections are exhausted, and logs a warning about this
  158. to the error log.
  159. *) Change: optimization of client request body reading when using
  160. chunked transfer encoding.
  161. *) Bugfix: memory leak if the "ssl_ocsp" directive was used.
  162. *) Bugfix: "zero size buf in output" alerts might appear in logs if a
  163. FastCGI server returned an incorrect response; the bug had appeared
  164. in 1.19.1.
  165. *) Bugfix: a segmentation fault might occur in a worker process if
  166. different large_client_header_buffers sizes were used in different
  167. virtual servers.
  168. *) Bugfix: SSL shutdown might not work.
  169. *) Bugfix: "SSL_shutdown() failed (SSL: ... bad write retry)" messages
  170. might appear in logs.
  171. *) Bugfix: in the ngx_http_slice_module.
  172. *) Bugfix: in the ngx_http_xslt_filter_module.
  173. Changes with nginx 1.19.1 07 Jul 2020
  174. *) Change: the "lingering_close", "lingering_time", and
  175. "lingering_timeout" directives now work when using HTTP/2.
  176. *) Change: now extra data sent by a backend are always discarded.
  177. *) Change: now after receiving a too short response from a FastCGI
  178. server nginx tries to send the available part of the response to the
  179. client, and then closes the client connection.
  180. *) Change: now after receiving a response with incorrect length from a
  181. gRPC backend nginx stops response processing with an error.
  182. *) Feature: the "min_free" parameter of the "proxy_cache_path",
  183. "fastcgi_cache_path", "scgi_cache_path", and "uwsgi_cache_path"
  184. directives.
  185. Thanks to Adam Bambuch.
  186. *) Bugfix: nginx did not delete unix domain listen sockets during
  187. graceful shutdown on the SIGQUIT signal.
  188. *) Bugfix: zero length UDP datagrams were not proxied.
  189. *) Bugfix: proxying to uwsgi backends using SSL might not work.
  190. Thanks to Guanzhong Chen.
  191. *) Bugfix: in error handling when using the "ssl_ocsp" directive.
  192. *) Bugfix: on XFS and NFS file systems disk cache size might be
  193. calculated incorrectly.
  194. *) Bugfix: "negative size buf in writer" alerts might appear in logs if
  195. a memcached server returned a malformed response.
  196. Changes with nginx 1.19.0 26 May 2020
  197. *) Feature: client certificate validation with OCSP.
  198. *) Bugfix: "upstream sent frame for closed stream" errors might occur
  199. when working with gRPC backends.
  200. *) Bugfix: OCSP stapling might not work if the "resolver" directive was
  201. not specified.
  202. *) Bugfix: connections with incorrect HTTP/2 preface were not logged.
  203. Changes with nginx 1.17.10 14 Apr 2020
  204. *) Feature: the "auth_delay" directive.
  205. Changes with nginx 1.17.9 03 Mar 2020
  206. *) Change: now nginx does not allow several "Host" request header lines.
  207. *) Bugfix: nginx ignored additional "Transfer-Encoding" request header
  208. lines.
  209. *) Bugfix: socket leak when using HTTP/2.
  210. *) Bugfix: a segmentation fault might occur in a worker process if OCSP
  211. stapling was used.
  212. *) Bugfix: in the ngx_http_mp4_module.
  213. *) Bugfix: nginx used status code 494 instead of 400 if errors with code
  214. 494 were redirected with the "error_page" directive.
  215. *) Bugfix: socket leak when using subrequests in the njs module and the
  216. "aio" directive.
  217. Changes with nginx 1.17.8 21 Jan 2020
  218. *) Feature: variables support in the "grpc_pass" directive.
  219. *) Bugfix: a timeout might occur while handling pipelined requests in an
  220. SSL connection; the bug had appeared in 1.17.5.
  221. *) Bugfix: in the "debug_points" directive when using HTTP/2.
  222. Thanks to Daniil Bondarev.
  223. Changes with nginx 1.17.7 24 Dec 2019
  224. *) Bugfix: a segmentation fault might occur on start or during
  225. reconfiguration if the "rewrite" directive with an empty replacement
  226. string was used in the configuration.
  227. *) Bugfix: a segmentation fault might occur in a worker process if the
  228. "break" directive was used with the "alias" directive or with the
  229. "proxy_pass" directive with a URI.
  230. *) Bugfix: the "Location" response header line might contain garbage if
  231. the request URI was rewritten to the one containing a null character.
  232. *) Bugfix: requests with bodies were handled incorrectly when returning
  233. redirections with the "error_page" directive; the bug had appeared in
  234. 0.7.12.
  235. *) Bugfix: socket leak when using HTTP/2.
  236. *) Bugfix: a timeout might occur while handling pipelined requests in an
  237. SSL connection; the bug had appeared in 1.17.5.
  238. *) Bugfix: in the ngx_http_dav_module.
  239. Changes with nginx 1.17.6 19 Nov 2019
  240. *) Feature: the $proxy_protocol_server_addr and
  241. $proxy_protocol_server_port variables.
  242. *) Feature: the "limit_conn_dry_run" directive.
  243. *) Feature: the $limit_req_status and $limit_conn_status variables.
  244. Changes with nginx 1.17.5 22 Oct 2019
  245. *) Feature: now nginx uses ioctl(FIONREAD), if available, to avoid
  246. reading from a fast connection for a long time.
  247. *) Bugfix: incomplete escaped characters at the end of the request URI
  248. were ignored.
  249. *) Bugfix: "/." and "/.." at the end of the request URI were not
  250. normalized.
  251. *) Bugfix: in the "merge_slashes" directive.
  252. *) Bugfix: in the "ignore_invalid_headers" directive.
  253. Thanks to Alan Kemp.
  254. *) Bugfix: nginx could not be built with MinGW-w64 gcc 8.1 or newer.
  255. Changes with nginx 1.17.4 24 Sep 2019
  256. *) Change: better detection of incorrect client behavior in HTTP/2.
  257. *) Change: in handling of not fully read client request body when
  258. returning errors in HTTP/2.
  259. *) Bugfix: the "worker_shutdown_timeout" directive might not work when
  260. using HTTP/2.
  261. *) Bugfix: a segmentation fault might occur in a worker process when
  262. using HTTP/2 and the "proxy_request_buffering" directive.
  263. *) Bugfix: the ECONNABORTED error log level was "crit" instead of
  264. "error" on Windows when using SSL.
  265. *) Bugfix: nginx ignored extra data when using chunked transfer
  266. encoding.
  267. *) Bugfix: nginx always returned the 500 error if the "return" directive
  268. was used and an error occurred during reading client request body.
  269. *) Bugfix: in memory allocation error handling.
  270. Changes with nginx 1.17.3 13 Aug 2019
  271. *) Security: when using HTTP/2 a client might cause excessive memory
  272. consumption and CPU usage (CVE-2019-9511, CVE-2019-9513,
  273. CVE-2019-9516).
  274. *) Bugfix: "zero size buf" alerts might appear in logs when using
  275. gzipping; the bug had appeared in 1.17.2.
  276. *) Bugfix: a segmentation fault might occur in a worker process if the
  277. "resolver" directive was used in SMTP proxy.
  278. Changes with nginx 1.17.2 23 Jul 2019
  279. *) Change: minimum supported zlib version is 1.2.0.4.
  280. Thanks to Ilya Leoshkevich.
  281. *) Change: the $r->internal_redirect() embedded perl method now expects
  282. escaped URIs.
  283. *) Feature: it is now possible to switch to a named location using the
  284. $r->internal_redirect() embedded perl method.
  285. *) Bugfix: in error handling in embedded perl.
  286. *) Bugfix: a segmentation fault might occur on start or during
  287. reconfiguration if hash bucket size larger than 64 kilobytes was used
  288. in the configuration.
  289. *) Bugfix: nginx might hog CPU during unbuffered proxying and when
  290. proxying WebSocket connections if the select, poll, or /dev/poll
  291. methods were used.
  292. *) Bugfix: in the ngx_http_xslt_filter_module.
  293. *) Bugfix: in the ngx_http_ssi_filter_module.
  294. Changes with nginx 1.17.1 25 Jun 2019
  295. *) Feature: the "limit_req_dry_run" directive.
  296. *) Feature: when using the "hash" directive inside the "upstream" block
  297. an empty hash key now triggers round-robin balancing.
  298. Thanks to Niklas Keller.
  299. *) Bugfix: a segmentation fault might occur in a worker process if
  300. caching was used along with the "image_filter" directive, and errors
  301. with code 415 were redirected with the "error_page" directive; the
  302. bug had appeared in 1.11.10.
  303. *) Bugfix: a segmentation fault might occur in a worker process if
  304. embedded perl was used; the bug had appeared in 1.7.3.
  305. Changes with nginx 1.17.0 21 May 2019
  306. *) Feature: variables support in the "limit_rate" and "limit_rate_after"
  307. directives.
  308. *) Feature: variables support in the "proxy_upload_rate" and
  309. "proxy_download_rate" directives in the stream module.
  310. *) Change: minimum supported OpenSSL version is 0.9.8.
  311. *) Change: now the postpone filter is always built.
  312. *) Bugfix: the "include" directive did not work inside the "if" and
  313. "limit_except" blocks.
  314. *) Bugfix: in byte ranges processing.
  315. Changes with nginx 1.15.12 16 Apr 2019
  316. *) Bugfix: a segmentation fault might occur in a worker process if
  317. variables were used in the "ssl_certificate" or "ssl_certificate_key"
  318. directives and OCSP stapling was enabled.
  319. Changes with nginx 1.15.11 09 Apr 2019
  320. *) Bugfix: in the "ssl_stapling_file" directive on Windows.
  321. Changes with nginx 1.15.10 26 Mar 2019
  322. *) Change: when using a hostname in the "listen" directive nginx now
  323. creates listening sockets for all addresses the hostname resolves to
  324. (previously, only the first address was used).
  325. *) Feature: port ranges in the "listen" directive.
  326. *) Feature: loading of SSL certificates and secret keys from variables.
  327. *) Workaround: the $ssl_server_name variable might be empty when using
  328. OpenSSL 1.1.1.
  329. *) Bugfix: nginx/Windows could not be built with Visual Studio 2015 or
  330. newer; the bug had appeared in 1.15.9.
  331. Changes with nginx 1.15.9 26 Feb 2019
  332. *) Feature: variables support in the "ssl_certificate" and
  333. "ssl_certificate_key" directives.
  334. *) Feature: the "poll" method is now available on Windows when using
  335. Windows Vista or newer.
  336. *) Bugfix: if the "select" method was used on Windows and an error
  337. occurred while establishing a backend connection, nginx waited for
  338. the connection establishment timeout to expire.
  339. *) Bugfix: the "proxy_upload_rate" and "proxy_download_rate" directives
  340. in the stream module worked incorrectly when proxying UDP datagrams.
  341. Changes with nginx 1.15.8 25 Dec 2018
  342. *) Feature: the $upstream_bytes_sent variable.
  343. Thanks to Piotr Sikora.
  344. *) Feature: new directives in vim syntax highlighting scripts.
  345. Thanks to Gena Makhomed.
  346. *) Bugfix: in the "proxy_cache_background_update" directive.
  347. *) Bugfix: in the "geo" directive when using unix domain listen sockets.
  348. *) Workaround: the "ignoring stale global SSL error ... bad length"
  349. alerts might appear in logs when using the "ssl_early_data" directive
  350. with OpenSSL.
  351. *) Bugfix: in nginx/Windows.
  352. *) Bugfix: in the ngx_http_autoindex_module on 32-bit platforms.
  353. Changes with nginx 1.15.7 27 Nov 2018
  354. *) Feature: the "proxy_requests" directive in the stream module.
  355. *) Feature: the "delay" parameter of the "limit_req" directive.
  356. Thanks to Vladislav Shabanov and Peter Shchuchkin.
  357. *) Bugfix: memory leak on errors during reconfiguration.
  358. *) Bugfix: in the $upstream_response_time, $upstream_connect_time, and
  359. $upstream_header_time variables.
  360. *) Bugfix: a segmentation fault might occur in a worker process if the
  361. ngx_http_mp4_module was used on 32-bit platforms.
  362. Changes with nginx 1.15.6 06 Nov 2018
  363. *) Security: when using HTTP/2 a client might cause excessive memory
  364. consumption (CVE-2018-16843) and CPU usage (CVE-2018-16844).
  365. *) Security: processing of a specially crafted mp4 file with the
  366. ngx_http_mp4_module might result in worker process memory disclosure
  367. (CVE-2018-16845).
  368. *) Feature: the "proxy_socket_keepalive", "fastcgi_socket_keepalive",
  369. "grpc_socket_keepalive", "memcached_socket_keepalive",
  370. "scgi_socket_keepalive", and "uwsgi_socket_keepalive" directives.
  371. *) Bugfix: if nginx was built with OpenSSL 1.1.0 and used with OpenSSL
  372. 1.1.1, the TLS 1.3 protocol was always enabled.
  373. *) Bugfix: working with gRPC backends might result in excessive memory
  374. consumption.
  375. Changes with nginx 1.15.5 02 Oct 2018
  376. *) Bugfix: a segmentation fault might occur in a worker process when
  377. using OpenSSL 1.1.0h or newer; the bug had appeared in 1.15.4.
  378. *) Bugfix: of minor potential bugs.
  379. Changes with nginx 1.15.4 25 Sep 2018
  380. *) Feature: now the "ssl_early_data" directive can be used with OpenSSL.
  381. *) Bugfix: in the ngx_http_uwsgi_module.
  382. Thanks to Chris Caputo.
  383. *) Bugfix: connections with some gRPC backends might not be cached when
  384. using the "keepalive" directive.
  385. *) Bugfix: a socket leak might occur when using the "error_page"
  386. directive to redirect early request processing errors, notably errors
  387. with code 400.
  388. *) Bugfix: the "return" directive did not change the response code when
  389. returning errors if the request was redirected by the "error_page"
  390. directive.
  391. *) Bugfix: standard error pages and responses of the
  392. ngx_http_autoindex_module module used the "bgcolor" attribute, and
  393. might be displayed incorrectly when using custom color settings in
  394. browsers.
  395. Thanks to Nova DasSarma.
  396. *) Change: the logging level of the "no suitable key share" and "no
  397. suitable signature algorithm" SSL errors has been lowered from "crit"
  398. to "info".
  399. Changes with nginx 1.15.3 28 Aug 2018
  400. *) Feature: now TLSv1.3 can be used with BoringSSL.
  401. *) Feature: the "ssl_early_data" directive, currently available with
  402. BoringSSL.
  403. *) Feature: the "keepalive_timeout" and "keepalive_requests" directives
  404. in the "upstream" block.
  405. *) Bugfix: the ngx_http_dav_module did not truncate destination file
  406. when copying a file over an existing one with the COPY method.
  407. *) Bugfix: the ngx_http_dav_module used zero access rights on the
  408. destination file and did not preserve file modification time when
  409. moving a file between different file systems with the MOVE method.
  410. *) Bugfix: the ngx_http_dav_module used default access rights when
  411. copying a file with the COPY method.
  412. *) Workaround: some clients might not work when using HTTP/2; the bug
  413. had appeared in 1.13.5.
  414. *) Bugfix: nginx could not be built with LibreSSL 2.8.0.
  415. Changes with nginx 1.15.2 24 Jul 2018
  416. *) Feature: the $ssl_preread_protocol variable in the
  417. ngx_stream_ssl_preread_module.
  418. *) Feature: now when using the "reset_timedout_connection" directive
  419. nginx will reset connections being closed with the 444 code.
  420. *) Change: a logging level of the "http request", "https proxy request",
  421. "unsupported protocol", and "version too low" SSL errors has been
  422. lowered from "crit" to "info".
  423. *) Bugfix: DNS requests were not resent if initial sending of a request
  424. failed.
  425. *) Bugfix: the "reuseport" parameter of the "listen" directive was
  426. ignored if the number of worker processes was specified after the
  427. "listen" directive.
  428. *) Bugfix: when using OpenSSL 1.1.0 or newer it was not possible to
  429. switch off "ssl_prefer_server_ciphers" in a virtual server if it was
  430. switched on in the default server.
  431. *) Bugfix: SSL session reuse with upstream servers did not work with the
  432. TLS 1.3 protocol.
  433. Changes with nginx 1.15.1 03 Jul 2018
  434. *) Feature: the "random" directive inside the "upstream" block.
  435. *) Feature: improved performance when using the "hash" and "ip_hash"
  436. directives with the "zone" directive.
  437. *) Feature: the "reuseport" parameter of the "listen" directive now uses
  438. SO_REUSEPORT_LB on FreeBSD 12.
  439. *) Bugfix: HTTP/2 server push did not work if SSL was terminated by a
  440. proxy server in front of nginx.
  441. *) Bugfix: the "tcp_nopush" directive was always used on backend
  442. connections.
  443. *) Bugfix: sending a disk-buffered request body to a gRPC backend might
  444. fail.
  445. Changes with nginx 1.15.0 05 Jun 2018
  446. *) Change: the "ssl" directive is deprecated; the "ssl" parameter of the
  447. "listen" directive should be used instead.
  448. *) Change: now nginx detects missing SSL certificates during
  449. configuration testing when using the "ssl" parameter of the "listen"
  450. directive.
  451. *) Feature: now the stream module can handle multiple incoming UDP
  452. datagrams from a client within a single session.
  453. *) Bugfix: it was possible to specify an incorrect response code in the
  454. "proxy_cache_valid" directive.
  455. *) Bugfix: nginx could not be built by gcc 8.1.
  456. *) Bugfix: logging to syslog stopped on local IP address changes.
  457. *) Bugfix: nginx could not be built by clang with CUDA SDK installed;
  458. the bug had appeared in 1.13.8.
  459. *) Bugfix: "getsockopt(TCP_FASTOPEN) ... failed" messages might appear
  460. in logs during binary upgrade when using unix domain listen sockets
  461. on FreeBSD.
  462. *) Bugfix: nginx could not be built on Fedora 28 Linux.
  463. *) Bugfix: request processing rate might exceed configured rate when
  464. using the "limit_req" directive.
  465. *) Bugfix: in handling of client addresses when using unix domain listen
  466. sockets to work with datagrams on Linux.
  467. *) Bugfix: in memory allocation error handling.
  468. Changes with nginx 1.13.12 10 Apr 2018
  469. *) Bugfix: connections with gRPC backends might be closed unexpectedly
  470. when returning a large response.
  471. Changes with nginx 1.13.11 03 Apr 2018
  472. *) Feature: the "proxy_protocol" parameter of the "listen" directive now
  473. supports the PROXY protocol version 2.
  474. *) Bugfix: nginx could not be built with OpenSSL 1.1.1 statically on
  475. Linux.
  476. *) Bugfix: in the "http_404", "http_500", etc. parameters of the
  477. "proxy_next_upstream" directive.
  478. Changes with nginx 1.13.10 20 Mar 2018
  479. *) Feature: the "set" parameter of the "include" SSI directive now
  480. allows writing arbitrary responses to a variable; the
  481. "subrequest_output_buffer_size" directive defines maximum response
  482. size.
  483. *) Feature: now nginx uses clock_gettime(CLOCK_MONOTONIC) if available,
  484. to avoid timeouts being incorrectly triggered on system time changes.
  485. *) Feature: the "escape=none" parameter of the "log_format" directive.
  486. Thanks to Johannes Baiter and Calin Don.
  487. *) Feature: the $ssl_preread_alpn_protocols variable in the
  488. ngx_stream_ssl_preread_module.
  489. *) Feature: the ngx_http_grpc_module.
  490. *) Bugfix: in memory allocation error handling in the "geo" directive.
  491. *) Bugfix: when using variables in the "auth_basic_user_file" directive
  492. a null character might appear in logs.
  493. Thanks to Vadim Filimonov.
  494. Changes with nginx 1.13.9 20 Feb 2018
  495. *) Feature: HTTP/2 server push support; the "http2_push" and
  496. "http2_push_preload" directives.
  497. *) Bugfix: "header already sent" alerts might appear in logs when using
  498. cache; the bug had appeared in 1.9.13.
  499. *) Bugfix: a segmentation fault might occur in a worker process if the
  500. "ssl_verify_client" directive was used and no SSL certificate was
  501. specified in a virtual server.
  502. *) Bugfix: in the ngx_http_v2_module.
  503. *) Bugfix: in the ngx_http_dav_module.
  504. Changes with nginx 1.13.8 26 Dec 2017
  505. *) Feature: now nginx automatically preserves the CAP_NET_RAW capability
  506. in worker processes when using the "transparent" parameter of the
  507. "proxy_bind", "fastcgi_bind", "memcached_bind", "scgi_bind", and
  508. "uwsgi_bind" directives.
  509. *) Feature: improved CPU cache line size detection.
  510. Thanks to Debayan Ghosh.
  511. *) Feature: new directives in vim syntax highlighting scripts.
  512. Thanks to Gena Makhomed.
  513. *) Bugfix: binary upgrade refused to work if nginx was re-parented to a
  514. process with PID different from 1 after its parent process has
  515. finished.
  516. *) Bugfix: the ngx_http_autoindex_module incorrectly handled requests
  517. with bodies.
  518. *) Bugfix: in the "proxy_limit_rate" directive when used with the
  519. "keepalive" directive.
  520. *) Bugfix: some parts of a response might be buffered when using
  521. "proxy_buffering off" if the client connection used SSL.
  522. Thanks to Patryk Lesiewicz.
  523. *) Bugfix: in the "proxy_cache_background_update" directive.
  524. *) Bugfix: it was not possible to start a parameter with a variable in
  525. the "${name}" form with the name in curly brackets without enclosing
  526. the parameter into single or double quotes.
  527. Changes with nginx 1.13.7 21 Nov 2017
  528. *) Bugfix: in the $upstream_status variable.
  529. *) Bugfix: a segmentation fault might occur in a worker process if a
  530. backend returned a "101 Switching Protocols" response to a
  531. subrequest.
  532. *) Bugfix: a segmentation fault occurred in a master process if a shared
  533. memory zone size was changed during a reconfiguration and the
  534. reconfiguration failed.
  535. *) Bugfix: in the ngx_http_fastcgi_module.
  536. *) Bugfix: nginx returned the 500 error if parameters without variables
  537. were specified in the "xslt_stylesheet" directive.
  538. *) Workaround: "gzip filter failed to use preallocated memory" alerts
  539. appeared in logs when using a zlib library variant from Intel.
  540. *) Bugfix: the "worker_shutdown_timeout" directive did not work when
  541. using mail proxy and when proxying WebSocket connections.
  542. Changes with nginx 1.13.6 10 Oct 2017
  543. *) Bugfix: switching to the next upstream server in the stream module
  544. did not work when using the "ssl_preread" directive.
  545. *) Bugfix: in the ngx_http_v2_module.
  546. Thanks to Piotr Sikora.
  547. *) Bugfix: nginx did not support dates after the year 2038 on 32-bit
  548. platforms with 64-bit time_t.
  549. *) Bugfix: in handling of dates prior to the year 1970 and after the
  550. year 10000.
  551. *) Bugfix: in the stream module timeouts waiting for UDP datagrams from
  552. upstream servers were not logged or logged at the "info" level
  553. instead of "error".
  554. *) Bugfix: when using HTTP/2 nginx might return the 400 response without
  555. logging the reason.
  556. *) Bugfix: in processing of corrupted cache files.
  557. *) Bugfix: cache control headers were ignored when caching errors
  558. intercepted by error_page.
  559. *) Bugfix: when using HTTP/2 client request body might be corrupted.
  560. *) Bugfix: in handling of client addresses when using unix domain
  561. sockets.
  562. *) Bugfix: nginx hogged CPU when using the "hash ... consistent"
  563. directive in the upstream block if large weights were used and all or
  564. most of the servers were unavailable.
  565. Changes with nginx 1.13.5 05 Sep 2017
  566. *) Feature: the $ssl_client_escaped_cert variable.
  567. *) Bugfix: the "ssl_session_ticket_key" directive and the "include"
  568. parameter of the "geo" directive did not work on Windows.
  569. *) Bugfix: incorrect response length was returned on 32-bit platforms
  570. when requesting more than 4 gigabytes with multiple ranges.
  571. *) Bugfix: the "expires modified" directive and processing of the
  572. "If-Range" request header line did not use the response last
  573. modification time if proxying without caching was used.
  574. Changes with nginx 1.13.4 08 Aug 2017
  575. *) Feature: the ngx_http_mirror_module.
  576. *) Bugfix: client connections might be dropped during configuration
  577. testing when using the "reuseport" parameter of the "listen"
  578. directive on Linux.
  579. *) Bugfix: request body might not be available in subrequests if it was
  580. saved to a file and proxying was used.
  581. *) Bugfix: cleaning cache based on the "max_size" parameter did not work
  582. on Windows.
  583. *) Bugfix: any shared memory allocation required 4096 bytes on Windows.
  584. *) Bugfix: nginx worker might be terminated abnormally when using the
  585. "zone" directive inside the "upstream" block on Windows.
  586. Changes with nginx 1.13.3 11 Jul 2017
  587. *) Security: a specially crafted request might result in an integer
  588. overflow and incorrect processing of ranges in the range filter,
  589. potentially resulting in sensitive information leak (CVE-2017-7529).
  590. Changes with nginx 1.13.2 27 Jun 2017
  591. *) Change: nginx now returns 200 instead of 416 when a range starting
  592. with 0 is requested from an empty file.
  593. *) Feature: the "add_trailer" directive.
  594. Thanks to Piotr Sikora.
  595. *) Bugfix: nginx could not be built on Cygwin and NetBSD; the bug had
  596. appeared in 1.13.0.
  597. *) Bugfix: nginx could not be built under MSYS2 / MinGW 64-bit.
  598. Thanks to Orgad Shaneh.
  599. *) Bugfix: a segmentation fault might occur in a worker process when
  600. using SSI with many includes and proxy_pass with variables.
  601. *) Bugfix: in the ngx_http_v2_module.
  602. Thanks to Piotr Sikora.
  603. Changes with nginx 1.13.1 30 May 2017
  604. *) Feature: now a hostname can be used as the "set_real_ip_from"
  605. directive parameter.
  606. *) Feature: vim syntax highlighting scripts improvements.
  607. *) Feature: the "worker_cpu_affinity" directive now works on DragonFly
  608. BSD.
  609. Thanks to Sepherosa Ziehau.
  610. *) Bugfix: SSL renegotiation on backend connections did not work when
  611. using OpenSSL before 1.1.0.
  612. *) Workaround: nginx could not be built with Oracle Developer Studio
  613. 12.5.
  614. *) Workaround: now cache manager ignores long locked cache entries when
  615. cleaning cache based on the "max_size" parameter.
  616. *) Bugfix: client SSL connections were immediately closed if deferred
  617. accept and the "proxy_protocol" parameter of the "listen" directive
  618. were used.
  619. *) Bugfix: in the "proxy_cache_background_update" directive.
  620. *) Workaround: now the "tcp_nodelay" directive sets the TCP_NODELAY
  621. option before an SSL handshake.
  622. Changes with nginx 1.13.0 25 Apr 2017
  623. *) Change: SSL renegotiation is now allowed on backend connections.
  624. *) Feature: the "rcvbuf" and "sndbuf" parameters of the "listen"
  625. directives of the mail proxy and stream modules.
  626. *) Feature: the "return" and "error_page" directives can now be used to
  627. return 308 redirections.
  628. Thanks to Simon Leblanc.
  629. *) Feature: the "TLSv1.3" parameter of the "ssl_protocols" directive.
  630. *) Feature: when logging signals nginx now logs PID of the process which
  631. sent the signal.
  632. *) Bugfix: in memory allocation error handling.
  633. *) Bugfix: if a server in the stream module listened on a wildcard
  634. address, the source address of a response UDP datagram could differ
  635. from the original datagram destination address.
  636. Changes with nginx 1.11.13 04 Apr 2017
  637. *) Feature: the "http_429" parameter of the "proxy_next_upstream",
  638. "fastcgi_next_upstream", "scgi_next_upstream", and
  639. "uwsgi_next_upstream" directives.
  640. Thanks to Piotr Sikora.
  641. *) Bugfix: in memory allocation error handling.
  642. *) Bugfix: requests might hang when using the "sendfile" and
  643. "timer_resolution" directives on Linux.
  644. *) Bugfix: requests might hang when using the "sendfile" and "aio_write"
  645. directives with subrequests.
  646. *) Bugfix: in the ngx_http_v2_module.
  647. Thanks to Piotr Sikora.
  648. *) Bugfix: a segmentation fault might occur in a worker process when
  649. using HTTP/2.
  650. *) Bugfix: requests might hang when using the "limit_rate",
  651. "sendfile_max_chunk", "limit_req" directives, or the $r->sleep()
  652. embedded perl method with subrequests.
  653. *) Bugfix: in the ngx_http_slice_module.
  654. Changes with nginx 1.11.12 24 Mar 2017
  655. *) Bugfix: nginx might hog CPU; the bug had appeared in 1.11.11.
  656. Changes with nginx 1.11.11 21 Mar 2017
  657. *) Feature: the "worker_shutdown_timeout" directive.
  658. *) Feature: vim syntax highlighting scripts improvements.
  659. Thanks to Wei-Ko Kao.
  660. *) Bugfix: a segmentation fault might occur in a worker process if the
  661. $limit_rate variable was set to an empty string.
  662. *) Bugfix: the "proxy_cache_background_update",
  663. "fastcgi_cache_background_update", "scgi_cache_background_update",
  664. and "uwsgi_cache_background_update" directives might work incorrectly
  665. if the "if" directive was used.
  666. *) Bugfix: a segmentation fault might occur in a worker process if
  667. number of large_client_header_buffers in a virtual server was
  668. different from the one in the default server.
  669. *) Bugfix: in the mail proxy server.
  670. Changes with nginx 1.11.10 14 Feb 2017
  671. *) Change: cache header format has been changed, previously cached
  672. responses will be invalidated.
  673. *) Feature: support of "stale-while-revalidate" and "stale-if-error"
  674. extensions in the "Cache-Control" backend response header line.
  675. *) Feature: the "proxy_cache_background_update",
  676. "fastcgi_cache_background_update", "scgi_cache_background_update",
  677. and "uwsgi_cache_background_update" directives.
  678. *) Feature: nginx is now able to cache responses with the "Vary" header
  679. line up to 128 characters long (instead of 42 characters in previous
  680. versions).
  681. *) Feature: the "build" parameter of the "server_tokens" directive.
  682. Thanks to Tom Thorogood.
  683. *) Bugfix: "[crit] SSL_write() failed" messages might appear in logs
  684. when handling requests with the "Expect: 100-continue" request header
  685. line.
  686. *) Bugfix: the ngx_http_slice_module did not work in named locations.
  687. *) Bugfix: a segmentation fault might occur in a worker process when
  688. using AIO after an "X-Accel-Redirect" redirection.
  689. *) Bugfix: reduced memory consumption for long-lived requests using
  690. gzipping.
  691. Changes with nginx 1.11.9 24 Jan 2017
  692. *) Bugfix: nginx might hog CPU when using the stream module; the bug had
  693. appeared in 1.11.5.
  694. *) Bugfix: EXTERNAL authentication mechanism in mail proxy was accepted
  695. even if it was not enabled in the configuration.
  696. *) Bugfix: a segmentation fault might occur in a worker process if the
  697. "ssl_verify_client" directive of the stream module was used.
  698. *) Bugfix: the "ssl_verify_client" directive of the stream module might
  699. not work.
  700. *) Bugfix: closing keepalive connections due to no free worker
  701. connections might be too aggressive.
  702. Thanks to Joel Cunningham.
  703. *) Bugfix: an incorrect response might be returned when using the
  704. "sendfile" directive on FreeBSD and macOS; the bug had appeared in
  705. 1.7.8.
  706. *) Bugfix: a truncated response might be stored in cache when using the
  707. "aio_write" directive.
  708. *) Bugfix: a socket leak might occur when using the "aio_write"
  709. directive.
  710. Changes with nginx 1.11.8 27 Dec 2016
  711. *) Feature: the "absolute_redirect" directive.
  712. *) Feature: the "escape" parameter of the "log_format" directive.
  713. *) Feature: client SSL certificates verification in the stream module.
  714. *) Feature: the "ssl_session_ticket_key" directive supports AES256
  715. encryption of TLS session tickets when used with 80-byte keys.
  716. *) Feature: vim-commentary support in vim scripts.
  717. Thanks to Armin Grodon.
  718. *) Bugfix: recursion when evaluating variables was not limited.
  719. *) Bugfix: in the ngx_stream_ssl_preread_module.
  720. *) Bugfix: if a server in an upstream in the stream module failed, it
  721. was considered alive only when a test connection sent to it after
  722. fail_timeout was closed; now a successfully established connection is
  723. enough.
  724. *) Bugfix: nginx/Windows could not be built with 64-bit Visual Studio.
  725. *) Bugfix: nginx/Windows could not be built with OpenSSL 1.1.0.
  726. Changes with nginx 1.11.7 13 Dec 2016
  727. *) Change: now in case of a client certificate verification error the
  728. $ssl_client_verify variable contains a string with the failure
  729. reason, for example, "FAILED:certificate has expired".
  730. *) Feature: the $ssl_ciphers, $ssl_curves, $ssl_client_v_start,
  731. $ssl_client_v_end, and $ssl_client_v_remain variables.
  732. *) Feature: the "volatile" parameter of the "map" directive.
  733. *) Bugfix: dependencies specified for a module were ignored while
  734. building dynamic modules.
  735. *) Bugfix: when using HTTP/2 and the "limit_req" or "auth_request"
  736. directives client request body might be corrupted; the bug had
  737. appeared in 1.11.0.
  738. *) Bugfix: a segmentation fault might occur in a worker process when
  739. using HTTP/2; the bug had appeared in 1.11.3.
  740. *) Bugfix: in the ngx_http_mp4_module.
  741. Thanks to Congcong Hu.
  742. *) Bugfix: in the ngx_http_perl_module.
  743. Changes with nginx 1.11.6 15 Nov 2016
  744. *) Change: format of the $ssl_client_s_dn and $ssl_client_i_dn variables
  745. has been changed to follow RFC 2253 (RFC 4514); values in the old
  746. format are available in the $ssl_client_s_dn_legacy and
  747. $ssl_client_i_dn_legacy variables.
  748. *) Change: when storing temporary files in a cache directory they will
  749. be stored in the same subdirectories as corresponding cache files
  750. instead of a separate subdirectory for temporary files.
  751. *) Feature: EXTERNAL authentication mechanism support in mail proxy.
  752. Thanks to Robert Norris.
  753. *) Feature: WebP support in the ngx_http_image_filter_module.
  754. *) Feature: variables support in the "proxy_method" directive.
  755. Thanks to Dmitry Lazurkin.
  756. *) Feature: the "http2_max_requests" directive in the
  757. ngx_http_v2_module.
  758. *) Feature: the "proxy_cache_max_range_offset",
  759. "fastcgi_cache_max_range_offset", "scgi_cache_max_range_offset", and
  760. "uwsgi_cache_max_range_offset" directives.
  761. *) Bugfix: graceful shutdown of old worker processes might require
  762. infinite time when using HTTP/2.
  763. *) Bugfix: in the ngx_http_mp4_module.
  764. *) Bugfix: "ignore long locked inactive cache entry" alerts might appear
  765. in logs when proxying WebSocket connections with caching enabled.
  766. *) Bugfix: nginx did not write anything to log and returned a response
  767. with code 502 instead of 504 when a timeout occurred during an SSL
  768. handshake to a backend.
  769. Changes with nginx 1.11.5 11 Oct 2016
  770. *) Change: the --with-ipv6 configure option was removed, now IPv6
  771. support is configured automatically.
  772. *) Change: now if there are no available servers in an upstream, nginx
  773. will not reset number of failures of all servers as it previously
  774. did, but will wait for fail_timeout to expire.
  775. *) Feature: the ngx_stream_ssl_preread_module.
  776. *) Feature: the "server" directive in the "upstream" context supports
  777. the "max_conns" parameter.
  778. *) Feature: the --with-compat configure option.
  779. *) Feature: "manager_files", "manager_threshold", and "manager_sleep"
  780. parameters of the "proxy_cache_path", "fastcgi_cache_path",
  781. "scgi_cache_path", and "uwsgi_cache_path" directives.
  782. *) Bugfix: flags passed by the --with-ld-opt configure option were not
  783. used while building perl module.
  784. *) Bugfix: in the "add_after_body" directive when used with the
  785. "sub_filter" directive.
  786. *) Bugfix: in the $realip_remote_addr variable.
  787. *) Bugfix: the "dav_access", "proxy_store_access",
  788. "fastcgi_store_access", "scgi_store_access", and "uwsgi_store_access"
  789. directives ignored permissions specified for user.
  790. *) Bugfix: unix domain listen sockets might not be inherited during
  791. binary upgrade on Linux.
  792. *) Bugfix: nginx returned the 400 response on requests with the "-"
  793. character in the HTTP method.
  794. Changes with nginx 1.11.4 13 Sep 2016
  795. *) Feature: the $upstream_bytes_received variable.
  796. *) Feature: the $bytes_received, $session_time, $protocol, $status,
  797. $upstream_addr, $upstream_bytes_sent, $upstream_bytes_received,
  798. $upstream_connect_time, $upstream_first_byte_time, and
  799. $upstream_session_time variables in the stream module.
  800. *) Feature: the ngx_stream_log_module.
  801. *) Feature: the "proxy_protocol" parameter of the "listen" directive,
  802. the $proxy_protocol_addr and $proxy_protocol_port variables in the
  803. stream module.
  804. *) Feature: the ngx_stream_realip_module.
  805. *) Bugfix: nginx could not be built with the stream module and the
  806. ngx_http_ssl_module, but without ngx_stream_ssl_module; the bug had
  807. appeared in 1.11.3.
  808. *) Feature: the IP_BIND_ADDRESS_NO_PORT socket option was not used; the
  809. bug had appeared in 1.11.2.
  810. *) Bugfix: in the "ranges" parameter of the "geo" directive.
  811. *) Bugfix: an incorrect response might be returned when using the "aio
  812. threads" and "sendfile" directives; the bug had appeared in 1.9.13.
  813. Changes with nginx 1.11.3 26 Jul 2016
  814. *) Change: now the "accept_mutex" directive is turned off by default.
  815. *) Feature: now nginx uses EPOLLEXCLUSIVE on Linux.
  816. *) Feature: the ngx_stream_geo_module.
  817. *) Feature: the ngx_stream_geoip_module.
  818. *) Feature: the ngx_stream_split_clients_module.
  819. *) Feature: variables support in the "proxy_pass" and "proxy_ssl_name"
  820. directives in the stream module.
  821. *) Bugfix: socket leak when using HTTP/2.
  822. *) Bugfix: in configure tests.
  823. Thanks to Piotr Sikora.
  824. Changes with nginx 1.11.2 05 Jul 2016
  825. *) Change: now nginx always uses internal MD5 and SHA1 implementations;
  826. the --with-md5 and --with-sha1 configure options were canceled.
  827. *) Feature: variables support in the stream module.
  828. *) Feature: the ngx_stream_map_module.
  829. *) Feature: the ngx_stream_return_module.
  830. *) Feature: a port can be specified in the "proxy_bind", "fastcgi_bind",
  831. "memcached_bind", "scgi_bind", and "uwsgi_bind" directives.
  832. *) Feature: now nginx uses the IP_BIND_ADDRESS_NO_PORT socket option
  833. when available.
  834. *) Bugfix: a segmentation fault might occur in a worker process when
  835. using HTTP/2 and the "proxy_request_buffering" directive.
  836. *) Bugfix: the "Content-Length" request header line was always added to
  837. requests passed to backends, including requests without body, when
  838. using HTTP/2.
  839. *) Bugfix: "http request count is zero" alerts might appear in logs when
  840. using HTTP/2.
  841. *) Bugfix: unnecessary buffering might occur when using the "sub_filter"
  842. directive; the issue had appeared in 1.9.4.
  843. Changes with nginx 1.11.1 31 May 2016
  844. *) Security: a segmentation fault might occur in a worker process while
  845. writing a specially crafted request body to a temporary file
  846. (CVE-2016-4450); the bug had appeared in 1.3.9.
  847. Changes with nginx 1.11.0 24 May 2016
  848. *) Feature: the "transparent" parameter of the "proxy_bind",
  849. "fastcgi_bind", "memcached_bind", "scgi_bind", and "uwsgi_bind"
  850. directives.
  851. *) Feature: the $request_id variable.
  852. *) Feature: the "map" directive supports combinations of multiple
  853. variables as resulting values.
  854. *) Feature: now nginx checks if EPOLLRDHUP events are supported by
  855. kernel, and optimizes connection handling accordingly if the "epoll"
  856. method is used.
  857. *) Feature: the "ssl_certificate" and "ssl_certificate_key" directives
  858. can be specified multiple times to load certificates of different
  859. types (for example, RSA and ECDSA).
  860. *) Feature: the "ssl_ecdh_curve" directive now allows specifying a list
  861. of curves when using OpenSSL 1.0.2 or newer; by default a list built
  862. into OpenSSL is used.
  863. *) Change: to use DHE ciphers it is now required to specify parameters
  864. using the "ssl_dhparam" directive.
  865. *) Feature: the $proxy_protocol_port variable.
  866. *) Feature: the $realip_remote_port variable in the
  867. ngx_http_realip_module.
  868. *) Feature: the ngx_http_realip_module is now able to set the client
  869. port in addition to the address.
  870. *) Change: the "421 Misdirected Request" response now used when
  871. rejecting requests to a virtual server different from one negotiated
  872. during an SSL handshake; this improves interoperability with some
  873. HTTP/2 clients when using client certificates.
  874. *) Change: HTTP/2 clients can now start sending request body
  875. immediately; the "http2_body_preread_size" directive controls size of
  876. the buffer used before nginx will start reading client request body.
  877. *) Bugfix: cached error responses were not updated when using the
  878. "proxy_cache_bypass" directive.
  879. Changes with nginx 1.9.15 19 Apr 2016
  880. *) Bugfix: "recv() failed" errors might occur when using HHVM as a
  881. FastCGI server.
  882. *) Bugfix: when using HTTP/2 and the "limit_req" or "auth_request"
  883. directives a timeout or a "client violated flow control" error might
  884. occur while reading client request body; the bug had appeared in
  885. 1.9.14.
  886. *) Workaround: a response might not be shown by some browsers if HTTP/2
  887. was used and client request body was not fully read; the bug had
  888. appeared in 1.9.14.
  889. *) Bugfix: connections might hang when using the "aio threads"
  890. directive.
  891. Thanks to Mindaugas Rasiukevicius.
  892. Changes with nginx 1.9.14 05 Apr 2016
  893. *) Feature: OpenSSL 1.1.0 compatibility.
  894. *) Feature: the "proxy_request_buffering", "fastcgi_request_buffering",
  895. "scgi_request_buffering", and "uwsgi_request_buffering" directives
  896. now work with HTTP/2.
  897. *) Bugfix: "zero size buf in output" alerts might appear in logs when
  898. using HTTP/2.
  899. *) Bugfix: the "client_max_body_size" directive might work incorrectly
  900. when using HTTP/2.
  901. *) Bugfix: of minor bugs in logging.
  902. Changes with nginx 1.9.13 29 Mar 2016
  903. *) Change: non-idempotent requests (POST, LOCK, PATCH) are no longer
  904. passed to the next server by default if a request has been sent to a
  905. backend; the "non_idempotent" parameter of the "proxy_next_upstream"
  906. directive explicitly allows retrying such requests.
  907. *) Feature: the ngx_http_perl_module can be built dynamically.
  908. *) Feature: UDP support in the stream module.
  909. *) Feature: the "aio_write" directive.
  910. *) Feature: now cache manager monitors number of elements in caches and
  911. tries to avoid cache keys zone overflows.
  912. *) Bugfix: "task already active" and "second aio post" alerts might
  913. appear in logs when using the "sendfile" and "aio" directives with
  914. subrequests.
  915. *) Bugfix: "zero size buf in output" alerts might appear in logs if
  916. caching was used and a client closed a connection prematurely.
  917. *) Bugfix: connections with clients might be closed needlessly if
  918. caching was used.
  919. Thanks to Justin Li.
  920. *) Bugfix: nginx might hog CPU if the "sendfile" directive was used on
  921. Linux or Solaris and a file being sent was changed during sending.
  922. *) Bugfix: connections might hang when using the "sendfile" and "aio
  923. threads" directives.
  924. *) Bugfix: in the "proxy_pass", "fastcgi_pass", "scgi_pass", and
  925. "uwsgi_pass" directives when using variables.
  926. Thanks to Piotr Sikora.
  927. *) Bugfix: in the ngx_http_sub_filter_module.
  928. *) Bugfix: if an error occurred in a cached backend connection, the
  929. request was passed to the next server regardless of the
  930. proxy_next_upstream directive.
  931. *) Bugfix: "CreateFile() failed" errors when creating temporary files on
  932. Windows.
  933. Changes with nginx 1.9.12 24 Feb 2016
  934. *) Feature: Huffman encoding of response headers in HTTP/2.
  935. Thanks to Vlad Krasnov.
  936. *) Feature: the "worker_cpu_affinity" directive now supports more than
  937. 64 CPUs.
  938. *) Bugfix: compatibility with 3rd party C++ modules; the bug had
  939. appeared in 1.9.11.
  940. Thanks to Piotr Sikora.
  941. *) Bugfix: nginx could not be built statically with OpenSSL on Linux;
  942. the bug had appeared in 1.9.11.
  943. *) Bugfix: the "add_header ... always" directive with an empty value did
  944. not delete "Last-Modified" and "ETag" header lines from error
  945. responses.
  946. *) Workaround: "called a function you should not call" and "shutdown
  947. while in init" messages might appear in logs when using OpenSSL
  948. 1.0.2f.
  949. *) Bugfix: invalid headers might be logged incorrectly.
  950. *) Bugfix: socket leak when using HTTP/2.
  951. *) Bugfix: in the ngx_http_v2_module.
  952. Changes with nginx 1.9.11 09 Feb 2016
  953. *) Feature: TCP support in resolver.
  954. *) Feature: dynamic modules.
  955. *) Bugfix: the $request_length variable did not include size of request
  956. headers when using HTTP/2.
  957. *) Bugfix: in the ngx_http_v2_module.
  958. Changes with nginx 1.9.10 26 Jan 2016
  959. *) Security: invalid pointer dereference might occur during DNS server
  960. response processing if the "resolver" directive was used, allowing an
  961. attacker who is able to forge UDP packets from the DNS server to
  962. cause segmentation fault in a worker process (CVE-2016-0742).
  963. *) Security: use-after-free condition might occur during CNAME response
  964. processing if the "resolver" directive was used, allowing an attacker
  965. who is able to trigger name resolution to cause segmentation fault in
  966. a worker process, or might have potential other impact
  967. (CVE-2016-0746).
  968. *) Security: CNAME resolution was insufficiently limited if the
  969. "resolver" directive was used, allowing an attacker who is able to
  970. trigger arbitrary name resolution to cause excessive resource
  971. consumption in worker processes (CVE-2016-0747).
  972. *) Feature: the "auto" parameter of the "worker_cpu_affinity" directive.
  973. *) Bugfix: the "proxy_protocol" parameter of the "listen" directive did
  974. not work with IPv6 listen sockets.
  975. *) Bugfix: connections to upstream servers might be cached incorrectly
  976. when using the "keepalive" directive.
  977. *) Bugfix: proxying used the HTTP method of the original request after
  978. an "X-Accel-Redirect" redirection.
  979. Changes with nginx 1.9.9 09 Dec 2015
  980. *) Bugfix: proxying to unix domain sockets did not work when using
  981. variables; the bug had appeared in 1.9.8.
  982. Changes with nginx 1.9.8 08 Dec 2015
  983. *) Feature: pwritev() support.
  984. *) Feature: the "include" directive inside the "upstream" block.
  985. *) Feature: the ngx_http_slice_module.
  986. *) Bugfix: a segmentation fault might occur in a worker process when
  987. using LibreSSL; the bug had appeared in 1.9.6.
  988. *) Bugfix: nginx could not be built on OS X in some cases.
  989. Changes with nginx 1.9.7 17 Nov 2015
  990. *) Feature: the "nohostname" parameter of logging to syslog.
  991. *) Feature: the "proxy_cache_convert_head" directive.
  992. *) Feature: the $realip_remote_addr variable in the
  993. ngx_http_realip_module.
  994. *) Bugfix: the "expires" directive might not work when using variables.
  995. *) Bugfix: a segmentation fault might occur in a worker process when
  996. using HTTP/2; the bug had appeared in 1.9.6.
  997. *) Bugfix: if nginx was built with the ngx_http_v2_module it was
  998. possible to use the HTTP/2 protocol even if the "http2" parameter of
  999. the "listen" directive was not specified.
  1000. *) Bugfix: in the ngx_http_v2_module.
  1001. Changes with nginx 1.9.6 27 Oct 2015
  1002. *) Bugfix: a segmentation fault might occur in a worker process when
  1003. using HTTP/2.
  1004. Thanks to Piotr Sikora and Denis Andzakovic.
  1005. *) Bugfix: the $server_protocol variable was empty when using HTTP/2.
  1006. *) Bugfix: backend SSL connections in the stream module might be timed
  1007. out unexpectedly.
  1008. *) Bugfix: a segmentation fault might occur in a worker process if
  1009. different ssl_session_cache settings were used in different virtual
  1010. servers.
  1011. *) Bugfix: nginx/Windows could not be built with MinGW gcc; the bug had
  1012. appeared in 1.9.4.
  1013. Thanks to Kouhei Sutou.
  1014. *) Bugfix: time was not updated when the timer_resolution directive was
  1015. used on Windows.
  1016. *) Miscellaneous minor fixes and improvements.
  1017. Thanks to Markus Linnala, Kurtis Nusbaum and Piotr Sikora.
  1018. Changes with nginx 1.9.5 22 Sep 2015
  1019. *) Feature: the ngx_http_v2_module (replaces ngx_http_spdy_module).
  1020. Thanks to Dropbox and Automattic for sponsoring this work.
  1021. *) Change: now the "output_buffers" directive uses two buffers by
  1022. default.
  1023. *) Change: now nginx limits subrequests recursion, not simultaneous
  1024. subrequests.
  1025. *) Change: now nginx checks the whole cache key when returning a
  1026. response from cache.
  1027. Thanks to Gena Makhomed and Sergey Brester.
  1028. *) Bugfix: "header already sent" alerts might appear in logs when using
  1029. cache; the bug had appeared in 1.7.5.
  1030. *) Bugfix: "writev() failed (4: Interrupted system call)" errors might
  1031. appear in logs when using CephFS and the "timer_resolution" directive
  1032. on Linux.
  1033. *) Bugfix: in invalid configurations handling.
  1034. Thanks to Markus Linnala.
  1035. *) Bugfix: a segmentation fault occurred in a worker process if the
  1036. "sub_filter" directive was used at http level; the bug had appeared
  1037. in 1.9.4.
  1038. Changes with nginx 1.9.4 18 Aug 2015
  1039. *) Change: the "proxy_downstream_buffer" and "proxy_upstream_buffer"
  1040. directives of the stream module are replaced with the
  1041. "proxy_buffer_size" directive.
  1042. *) Feature: the "tcp_nodelay" directive in the stream module.
  1043. *) Feature: multiple "sub_filter" directives can be used simultaneously.
  1044. *) Feature: variables support in the search string of the "sub_filter"
  1045. directive.
  1046. *) Workaround: configuration testing might fail under Linux OpenVZ.
  1047. Thanks to Gena Makhomed.
  1048. *) Bugfix: old worker processes might hog CPU after reconfiguration with
  1049. a large number of worker_connections.
  1050. *) Bugfix: a segmentation fault might occur in a worker process if the
  1051. "try_files" and "alias" directives were used inside a location given
  1052. by a regular expression; the bug had appeared in 1.7.1.
  1053. *) Bugfix: the "try_files" directive inside a nested location given by a
  1054. regular expression worked incorrectly if the "alias" directive was
  1055. used in the outer location.
  1056. *) Bugfix: in hash table initialization error handling.
  1057. *) Bugfix: nginx could not be built with Visual Studio 2015.
  1058. Changes with nginx 1.9.3 14 Jul 2015
  1059. *) Change: duplicate "http", "mail", and "stream" blocks are now
  1060. disallowed.
  1061. *) Feature: connection limiting in the stream module.
  1062. *) Feature: data rate limiting in the stream module.
  1063. *) Bugfix: the "zone" directive inside the "upstream" block did not work
  1064. on Windows.
  1065. *) Bugfix: compatibility with LibreSSL in the stream module.
  1066. Thanks to Piotr Sikora.
  1067. *) Bugfix: in the "--builddir" configure parameter.
  1068. Thanks to Piotr Sikora.
  1069. *) Bugfix: the "ssl_stapling_file" directive did not work; the bug had
  1070. appeared in 1.9.2.
  1071. Thanks to Faidon Liambotis and Brandon Black.
  1072. *) Bugfix: a segmentation fault might occur in a worker process if the
  1073. "ssl_stapling" directive was used; the bug had appeared in 1.9.2.
  1074. Thanks to Matthew Baldwin.
  1075. Changes with nginx 1.9.2 16 Jun 2015
  1076. *) Feature: the "backlog" parameter of the "listen" directives of the
  1077. mail proxy and stream modules.
  1078. *) Feature: the "allow" and "deny" directives in the stream module.
  1079. *) Feature: the "proxy_bind" directive in the stream module.
  1080. *) Feature: the "proxy_protocol" directive in the stream module.
  1081. *) Feature: the -T switch.
  1082. *) Feature: the REQUEST_SCHEME parameter added to the fastcgi.conf,
  1083. fastcgi_params, scgi_params, and uwsgi_params standard configuration
  1084. files.
  1085. *) Bugfix: the "reuseport" parameter of the "listen" directive of the
  1086. stream module did not work.
  1087. *) Bugfix: OCSP stapling might return an expired OCSP response in some
  1088. cases.
  1089. Changes with nginx 1.9.1 26 May 2015
  1090. *) Change: now SSLv3 protocol is disabled by default.
  1091. *) Change: some long deprecated directives are not supported anymore.
  1092. *) Feature: the "reuseport" parameter of the "listen" directive.
  1093. Thanks to Yingqi Lu at Intel and Sepherosa Ziehau.
  1094. *) Feature: the $upstream_connect_time variable.
  1095. *) Bugfix: in the "hash" directive on big-endian platforms.
  1096. *) Bugfix: nginx might fail to start on some old Linux variants; the bug
  1097. had appeared in 1.7.11.
  1098. *) Bugfix: in IP address parsing.
  1099. Thanks to Sergey Polovko.
  1100. Changes with nginx 1.9.0 28 Apr 2015
  1101. *) Change: obsolete aio and rtsig event methods have been removed.
  1102. *) Feature: the "zone" directive inside the "upstream" block.
  1103. *) Feature: the stream module.
  1104. *) Feature: byte ranges support in the ngx_http_memcached_module.
  1105. Thanks to Martin Mlynář.
  1106. *) Feature: shared memory can now be used on Windows versions with
  1107. address space layout randomization.
  1108. Thanks to Sergey Brester.
  1109. *) Feature: the "error_log" directive can now be used on mail and server
  1110. levels in mail proxy.
  1111. *) Bugfix: the "proxy_protocol" parameter of the "listen" directive did
  1112. not work if not specified in the first "listen" directive for a
  1113. listen socket.
  1114. Changes with nginx 1.7.12 07 Apr 2015
  1115. *) Feature: now the "tcp_nodelay" directive works with backend SSL
  1116. connections.
  1117. *) Feature: now thread pools can be used to read cache file headers.
  1118. *) Bugfix: in the "proxy_request_buffering" directive.
  1119. *) Bugfix: a segmentation fault might occur in a worker process when
  1120. using thread pools on Linux.
  1121. *) Bugfix: in error handling when using the "ssl_stapling" directive.
  1122. Thanks to Filipe da Silva.
  1123. *) Bugfix: in the ngx_http_spdy_module.
  1124. Changes with nginx 1.7.11 24 Mar 2015
  1125. *) Change: the "sendfile" parameter of the "aio" directive is
  1126. deprecated; now nginx automatically uses AIO to pre-load data for
  1127. sendfile if both "aio" and "sendfile" directives are used.
  1128. *) Feature: experimental thread pools support.
  1129. *) Feature: the "proxy_request_buffering", "fastcgi_request_buffering",
  1130. "scgi_request_buffering", and "uwsgi_request_buffering" directives.
  1131. *) Feature: request body filters experimental API.
  1132. *) Feature: client SSL certificates support in mail proxy.
  1133. Thanks to Sven Peter, Franck Levionnois, and Filipe Da Silva.
  1134. *) Feature: startup speedup when using the "hash ... consistent"
  1135. directive in the upstream block.
  1136. Thanks to Wai Keen Woon.
  1137. *) Feature: debug logging into a cyclic memory buffer.
  1138. *) Bugfix: in hash table handling.
  1139. Thanks to Chris West.
  1140. *) Bugfix: in the "proxy_cache_revalidate" directive.
  1141. *) Bugfix: SSL connections might hang if deferred accept or the
  1142. "proxy_protocol" parameter of the "listen" directive were used.
  1143. Thanks to James Hamlin.
  1144. *) Bugfix: the $upstream_response_time variable might contain a wrong
  1145. value if the "image_filter" directive was used.
  1146. *) Bugfix: in integer overflow handling.
  1147. Thanks to Régis Leroy.
  1148. *) Bugfix: it was not possible to enable SSLv3 with LibreSSL.
  1149. *) Bugfix: the "ignoring stale global SSL error ... called a function
  1150. you should not call" alerts appeared in logs when using LibreSSL.
  1151. *) Bugfix: certificates specified by the "ssl_client_certificate" and
  1152. "ssl_trusted_certificate" directives were inadvertently used to
  1153. automatically construct certificate chains.
  1154. Changes with nginx 1.7.10 10 Feb 2015
  1155. *) Feature: the "use_temp_path" parameter of the "proxy_cache_path",
  1156. "fastcgi_cache_path", "scgi_cache_path", and "uwsgi_cache_path"
  1157. directives.
  1158. *) Feature: the $upstream_header_time variable.
  1159. *) Workaround: now on disk overflow nginx tries to write error logs once
  1160. a second only.
  1161. *) Bugfix: the "try_files" directive did not ignore normal files while
  1162. testing directories.
  1163. Thanks to Damien Tournoud.
  1164. *) Bugfix: alerts "sendfile() failed" if the "sendfile" directive was
  1165. used on OS X; the bug had appeared in 1.7.8.
  1166. *) Bugfix: alerts "sem_post() failed" might appear in logs.
  1167. *) Bugfix: nginx could not be built with musl libc.
  1168. Thanks to James Taylor.
  1169. *) Bugfix: nginx could not be built on Tru64 UNIX.
  1170. Thanks to Goetz T. Fischer.
  1171. Changes with nginx 1.7.9 23 Dec 2014
  1172. *) Feature: variables support in the "proxy_cache", "fastcgi_cache",
  1173. "scgi_cache", and "uwsgi_cache" directives.
  1174. *) Feature: variables support in the "expires" directive.
  1175. *) Feature: loading of secret keys from hardware tokens with OpenSSL
  1176. engines.
  1177. Thanks to Dmitrii Pichulin.
  1178. *) Feature: the "autoindex_format" directive.
  1179. *) Bugfix: cache revalidation is now only used for responses with 200
  1180. and 206 status codes.
  1181. Thanks to Piotr Sikora.
  1182. *) Bugfix: the "TE" client request header line was passed to backends
  1183. while proxying.
  1184. *) Bugfix: the "proxy_pass", "fastcgi_pass", "scgi_pass", and
  1185. "uwsgi_pass" directives might not work correctly inside the "if" and
  1186. "limit_except" blocks.
  1187. *) Bugfix: the "proxy_store" directive with the "on" parameter was
  1188. ignored if the "proxy_store" directive with an explicitly specified
  1189. file path was used on a previous level.
  1190. *) Bugfix: nginx could not be built with BoringSSL.
  1191. Thanks to Lukas Tribus.
  1192. Changes with nginx 1.7.8 02 Dec 2014
  1193. *) Change: now the "If-Modified-Since", "If-Range", etc. client request
  1194. header lines are passed to a backend while caching if nginx knows in
  1195. advance that the response will not be cached (e.g., when using
  1196. proxy_cache_min_uses).
  1197. *) Change: now after proxy_cache_lock_timeout nginx sends a request to a
  1198. backend with caching disabled; the new directives
  1199. "proxy_cache_lock_age", "fastcgi_cache_lock_age",
  1200. "scgi_cache_lock_age", and "uwsgi_cache_lock_age" specify a time
  1201. after which the lock will be released and another attempt to cache a
  1202. response will be made.
  1203. *) Change: the "log_format" directive can now be used only at http
  1204. level.
  1205. *) Feature: the "proxy_ssl_certificate", "proxy_ssl_certificate_key",
  1206. "proxy_ssl_password_file", "uwsgi_ssl_certificate",
  1207. "uwsgi_ssl_certificate_key", and "uwsgi_ssl_password_file"
  1208. directives.
  1209. Thanks to Piotr Sikora.
  1210. *) Feature: it is now possible to switch to a named location using
  1211. "X-Accel-Redirect".
  1212. Thanks to Toshikuni Fukaya.
  1213. *) Feature: now the "tcp_nodelay" directive works with SPDY connections.
  1214. *) Feature: new directives in vim syntax highliting scripts.
  1215. Thanks to Peter Wu.
  1216. *) Bugfix: nginx ignored the "s-maxage" value in the "Cache-Control"
  1217. backend response header line.
  1218. Thanks to Piotr Sikora.
  1219. *) Bugfix: in the ngx_http_spdy_module.
  1220. Thanks to Piotr Sikora.
  1221. *) Bugfix: in the "ssl_password_file" directive when using OpenSSL
  1222. 0.9.8zc, 1.0.0o, 1.0.1j.
  1223. *) Bugfix: alerts "header already sent" appeared in logs if the
  1224. "post_action" directive was used; the bug had appeared in 1.5.4.
  1225. *) Bugfix: alerts "the http output chain is empty" might appear in logs
  1226. if the "postpone_output 0" directive was used with SSI includes.
  1227. *) Bugfix: in the "proxy_cache_lock" directive with SSI subrequests.
  1228. Thanks to Yichun Zhang.
  1229. Changes with nginx 1.7.7 28 Oct 2014
  1230. *) Change: now nginx takes into account the "Vary" header line in a
  1231. backend response while caching.
  1232. *) Feature: the "proxy_force_ranges", "fastcgi_force_ranges",
  1233. "scgi_force_ranges", and "uwsgi_force_ranges" directives.
  1234. *) Feature: the "proxy_limit_rate", "fastcgi_limit_rate",
  1235. "scgi_limit_rate", and "uwsgi_limit_rate" directives.
  1236. *) Feature: the "Vary" parameter of the "proxy_ignore_headers",
  1237. "fastcgi_ignore_headers", "scgi_ignore_headers", and
  1238. "uwsgi_ignore_headers" directives.
  1239. *) Bugfix: the last part of a response received from a backend with
  1240. unbufferred proxy might not be sent to a client if "gzip" or "gunzip"
  1241. directives were used.
  1242. *) Bugfix: in the "proxy_cache_revalidate" directive.
  1243. Thanks to Piotr Sikora.
  1244. *) Bugfix: in error handling.
  1245. Thanks to Yichun Zhang and Daniil Bondarev.
  1246. *) Bugfix: in the "proxy_next_upstream_tries" and
  1247. "proxy_next_upstream_timeout" directives.
  1248. Thanks to Feng Gu.
  1249. *) Bugfix: nginx/Windows could not be built with MinGW-w64 gcc.
  1250. Thanks to Kouhei Sutou.
  1251. Changes with nginx 1.7.6 30 Sep 2014
  1252. *) Change: the deprecated "limit_zone" directive is not supported
  1253. anymore.
  1254. *) Feature: the "limit_conn_zone" and "limit_req_zone" directives now
  1255. can be used with combinations of multiple variables.
  1256. *) Bugfix: request body might be transmitted incorrectly when retrying a
  1257. FastCGI request to the next upstream server.
  1258. *) Bugfix: in logging to syslog.
  1259. Changes with nginx 1.7.5 16 Sep 2014
  1260. *) Security: it was possible to reuse SSL sessions in unrelated contexts
  1261. if a shared SSL session cache or the same TLS session ticket key was
  1262. used for multiple "server" blocks (CVE-2014-3616).
  1263. Thanks to Antoine Delignat-Lavaud.
  1264. *) Change: now the "stub_status" directive does not require a parameter.
  1265. *) Feature: the "always" parameter of the "add_header" directive.
  1266. *) Feature: the "proxy_next_upstream_tries",
  1267. "proxy_next_upstream_timeout", "fastcgi_next_upstream_tries",
  1268. "fastcgi_next_upstream_timeout", "memcached_next_upstream_tries",
  1269. "memcached_next_upstream_timeout", "scgi_next_upstream_tries",
  1270. "scgi_next_upstream_timeout", "uwsgi_next_upstream_tries", and
  1271. "uwsgi_next_upstream_timeout" directives.
  1272. *) Bugfix: in the "if" parameter of the "access_log" directive.
  1273. *) Bugfix: in the ngx_http_perl_module.
  1274. Thanks to Piotr Sikora.
  1275. *) Bugfix: the "listen" directive of the mail proxy module did not allow
  1276. to specify more than two parameters.
  1277. *) Bugfix: the "sub_filter" directive did not work with a string to
  1278. replace consisting of a single character.
  1279. *) Bugfix: requests might hang if resolver was used and a timeout
  1280. occurred during a DNS request.
  1281. *) Bugfix: in the ngx_http_spdy_module when using with AIO.
  1282. *) Bugfix: a segmentation fault might occur in a worker process if the
  1283. "set" directive was used to change the "$http_...", "$sent_http_...",
  1284. or "$upstream_http_..." variables.
  1285. *) Bugfix: in memory allocation error handling.
  1286. Thanks to Markus Linnala and Feng Gu.
  1287. Changes with nginx 1.7.4 05 Aug 2014
  1288. *) Security: pipelined commands were not discarded after STARTTLS
  1289. command in SMTP proxy (CVE-2014-3556); the bug had appeared in 1.5.6.
  1290. Thanks to Chris Boulton.
  1291. *) Change: URI escaping now uses uppercase hexadecimal digits.
  1292. Thanks to Piotr Sikora.
  1293. *) Feature: now nginx can be build with BoringSSL and LibreSSL.
  1294. Thanks to Piotr Sikora.
  1295. *) Bugfix: requests might hang if resolver was used and a DNS server
  1296. returned a malformed response; the bug had appeared in 1.5.8.
  1297. *) Bugfix: in the ngx_http_spdy_module.
  1298. Thanks to Piotr Sikora.
  1299. *) Bugfix: the $uri variable might contain garbage when returning errors
  1300. with code 400.
  1301. Thanks to Sergey Bobrov.
  1302. *) Bugfix: in error handling in the "proxy_store" directive and the
  1303. ngx_http_dav_module.
  1304. Thanks to Feng Gu.
  1305. *) Bugfix: a segmentation fault might occur if logging of errors to
  1306. syslog was used; the bug had appeared in 1.7.1.
  1307. *) Bugfix: the $geoip_latitude, $geoip_longitude, $geoip_dma_code, and
  1308. $geoip_area_code variables might not work.
  1309. Thanks to Yichun Zhang.
  1310. *) Bugfix: in memory allocation error handling.
  1311. Thanks to Tatsuhiko Kubo and Piotr Sikora.
  1312. Changes with nginx 1.7.3 08 Jul 2014
  1313. *) Feature: weak entity tags are now preserved on response
  1314. modifications, and strong ones are changed to weak.
  1315. *) Feature: cache revalidation now uses If-None-Match header if
  1316. possible.
  1317. *) Feature: the "ssl_password_file" directive.
  1318. *) Bugfix: the If-None-Match request header line was ignored if there
  1319. was no Last-Modified header in a response returned from cache.
  1320. *) Bugfix: "peer closed connection in SSL handshake" messages were
  1321. logged at "info" level instead of "error" while connecting to
  1322. backends.
  1323. *) Bugfix: in the ngx_http_dav_module module in nginx/Windows.
  1324. *) Bugfix: SPDY connections might be closed prematurely if caching was
  1325. used.
  1326. Changes with nginx 1.7.2 17 Jun 2014
  1327. *) Feature: the "hash" directive inside the "upstream" block.
  1328. *) Feature: defragmentation of free shared memory blocks.
  1329. Thanks to Wandenberg Peixoto and Yichun Zhang.
  1330. *) Bugfix: a segmentation fault might occur in a worker process if the
  1331. default value of the "access_log" directive was used; the bug had
  1332. appeared in 1.7.0.
  1333. Thanks to Piotr Sikora.
  1334. *) Bugfix: trailing slash was mistakenly removed from the last parameter
  1335. of the "try_files" directive.
  1336. *) Bugfix: nginx could not be built on OS X in some cases.
  1337. *) Bugfix: in the ngx_http_spdy_module.
  1338. Changes with nginx 1.7.1 27 May 2014
  1339. *) Feature: the "$upstream_cookie_..." variables.
  1340. *) Feature: the $ssl_client_fingerprint variable.
  1341. *) Feature: the "error_log" and "access_log" directives now support
  1342. logging to syslog.
  1343. *) Feature: the mail proxy now logs client port on connect.
  1344. *) Bugfix: memory leak if the "ssl_stapling" directive was used.
  1345. Thanks to Filipe da Silva.
  1346. *) Bugfix: the "alias" directive used inside a location given by a
  1347. regular expression worked incorrectly if the "if" or "limit_except"
  1348. directives were used.
  1349. *) Bugfix: the "charset" directive did not set a charset to encoded
  1350. backend responses.
  1351. *) Bugfix: a "proxy_pass" directive without URI part might use original
  1352. request after the $args variable was set.
  1353. Thanks to Yichun Zhang.
  1354. *) Bugfix: in the "none" parameter in the "smtp_auth" directive; the bug
  1355. had appeared in 1.5.6.
  1356. Thanks to Svyatoslav Nikolsky.
  1357. *) Bugfix: if sub_filter and SSI were used together, then responses
  1358. might be transferred incorrectly.
  1359. *) Bugfix: nginx could not be built with the --with-file-aio option on
  1360. Linux/aarch64.
  1361. Changes with nginx 1.7.0 24 Apr 2014
  1362. *) Feature: backend SSL certificate verification.
  1363. *) Feature: support for SNI while working with SSL backends.
  1364. *) Feature: the $ssl_server_name variable.
  1365. *) Feature: the "if" parameter of the "access_log" directive.
  1366. Changes with nginx 1.5.13 08 Apr 2014
  1367. *) Change: improved hash table handling; the default values of the
  1368. "variables_hash_max_size" and "types_hash_bucket_size" were changed
  1369. to 1024 and 64 respectively.
  1370. *) Feature: the ngx_http_mp4_module now supports the "end" argument.
  1371. *) Feature: byte ranges support in the ngx_http_mp4_module and while
  1372. saving responses to cache.
  1373. *) Bugfix: alerts "ngx_slab_alloc() failed: no memory" no longer logged
  1374. when using shared memory in the "ssl_session_cache" directive and in
  1375. the ngx_http_limit_req_module.
  1376. *) Bugfix: the "underscores_in_headers" directive did not allow
  1377. underscore as a first character of a header.
  1378. Thanks to Piotr Sikora.
  1379. *) Bugfix: cache manager might hog CPU on exit in nginx/Windows.
  1380. *) Bugfix: nginx/Windows terminated abnormally if the
  1381. "ssl_session_cache" directive was used with the "shared" parameter.
  1382. *) Bugfix: in the ngx_http_spdy_module.
  1383. Changes with nginx 1.5.12 18 Mar 2014
  1384. *) Security: a heap memory buffer overflow might occur in a worker
  1385. process while handling a specially crafted request by
  1386. ngx_http_spdy_module, potentially resulting in arbitrary code
  1387. execution (CVE-2014-0133).
  1388. Thanks to Lucas Molas, researcher at Programa STIC, Fundación Dr.
  1389. Manuel Sadosky, Buenos Aires, Argentina.
  1390. *) Feature: the "proxy_protocol" parameters of the "listen" and
  1391. "real_ip_header" directives, the $proxy_protocol_addr variable.
  1392. *) Bugfix: in the "fastcgi_next_upstream" directive.
  1393. Thanks to Lucas Molas.
  1394. Changes with nginx 1.5.11 04 Mar 2014
  1395. *) Security: memory corruption might occur in a worker process on 32-bit
  1396. platforms while handling a specially crafted request by
  1397. ngx_http_spdy_module, potentially resulting in arbitrary code
  1398. execution (CVE-2014-0088); the bug had appeared in 1.5.10.
  1399. Thanks to Lucas Molas, researcher at Programa STIC, Fundación Dr.
  1400. Manuel Sadosky, Buenos Aires, Argentina.
  1401. *) Feature: the $ssl_session_reused variable.
  1402. *) Bugfix: the "client_max_body_size" directive might not work when
  1403. reading a request body using chunked transfer encoding; the bug had
  1404. appeared in 1.3.9.
  1405. Thanks to Lucas Molas.
  1406. *) Bugfix: a segmentation fault might occur in a worker process when
  1407. proxying WebSocket connections.
  1408. *) Bugfix: a segmentation fault might occur in a worker process if the
  1409. ngx_http_spdy_module was used on 32-bit platforms; the bug had
  1410. appeared in 1.5.10.
  1411. *) Bugfix: the $upstream_status variable might contain wrong data if the
  1412. "proxy_cache_use_stale" or "proxy_cache_revalidate" directives were
  1413. used.
  1414. Thanks to Piotr Sikora.
  1415. *) Bugfix: a segmentation fault might occur in a worker process if
  1416. errors with code 400 were redirected to a named location using the
  1417. "error_page" directive.
  1418. *) Bugfix: nginx/Windows could not be built with Visual Studio 2013.
  1419. Changes with nginx 1.5.10 04 Feb 2014
  1420. *) Feature: the ngx_http_spdy_module now uses SPDY 3.1 protocol.
  1421. Thanks to Automattic and MaxCDN for sponsoring this work.
  1422. *) Feature: the ngx_http_mp4_module now skips tracks too short for a
  1423. seek requested.
  1424. *) Bugfix: a segmentation fault might occur in a worker process if the
  1425. $ssl_session_id variable was used in logs; the bug had appeared in
  1426. 1.5.9.
  1427. *) Bugfix: the $date_local and $date_gmt variables used wrong format
  1428. outside of the ngx_http_ssi_filter_module.
  1429. *) Bugfix: client connections might be immediately closed if deferred
  1430. accept was used; the bug had appeared in 1.3.15.
  1431. *) Bugfix: alerts "getsockopt(TCP_FASTOPEN) ... failed" appeared in logs
  1432. during binary upgrade on Linux; the bug had appeared in 1.5.8.
  1433. Thanks to Piotr Sikora.
  1434. Changes with nginx 1.5.9 22 Jan 2014
  1435. *) Change: now nginx expects escaped URIs in "X-Accel-Redirect" headers.
  1436. *) Feature: the "ssl_buffer_size" directive.
  1437. *) Feature: the "limit_rate" directive can now be used to rate limit
  1438. responses sent in SPDY connections.
  1439. *) Feature: the "spdy_chunk_size" directive.
  1440. *) Feature: the "ssl_session_tickets" directive.
  1441. Thanks to Dirkjan Bussink.
  1442. *) Bugfix: the $ssl_session_id variable contained full session
  1443. serialized instead of just a session id.
  1444. Thanks to Ivan Ristić.
  1445. *) Bugfix: nginx incorrectly handled escaped "?" character in the
  1446. "include" SSI command.
  1447. *) Bugfix: the ngx_http_dav_module did not unescape destination URI of
  1448. the COPY and MOVE methods.
  1449. *) Bugfix: resolver did not understand domain names with a trailing dot.
  1450. Thanks to Yichun Zhang.
  1451. *) Bugfix: alerts "zero size buf in output" might appear in logs while
  1452. proxying; the bug had appeared in 1.3.9.
  1453. *) Bugfix: a segmentation fault might occur in a worker process if the
  1454. ngx_http_spdy_module was used.
  1455. *) Bugfix: proxied WebSocket connections might hang right after
  1456. handshake if the select, poll, or /dev/poll methods were used.
  1457. *) Bugfix: the "xclient" directive of the mail proxy module incorrectly
  1458. handled IPv6 client addresses.
  1459. Changes with nginx 1.5.8 17 Dec 2013
  1460. *) Feature: IPv6 support in resolver.
  1461. *) Feature: the "listen" directive supports the "fastopen" parameter.
  1462. Thanks to Mathew Rodley.
  1463. *) Feature: SSL support in the ngx_http_uwsgi_module.
  1464. Thanks to Roberto De Ioris.
  1465. *) Feature: vim syntax highlighting scripts were added to contrib.
  1466. Thanks to Evan Miller.
  1467. *) Bugfix: a timeout might occur while reading client request body in an
  1468. SSL connection using chunked transfer encoding.
  1469. *) Bugfix: the "master_process" directive did not work correctly in
  1470. nginx/Windows.
  1471. *) Bugfix: the "setfib" parameter of the "listen" directive might not
  1472. work.
  1473. *) Bugfix: in the ngx_http_spdy_module.
  1474. Changes with nginx 1.5.7 19 Nov 2013
  1475. *) Security: a character following an unescaped space in a request line
  1476. was handled incorrectly (CVE-2013-4547); the bug had appeared in
  1477. 0.8.41.
  1478. Thanks to Ivan Fratric of the Google Security Team.
  1479. *) Change: a logging level of auth_basic errors about no user/password
  1480. provided has been lowered from "error" to "info".
  1481. *) Feature: the "proxy_cache_revalidate", "fastcgi_cache_revalidate",
  1482. "scgi_cache_revalidate", and "uwsgi_cache_revalidate" directives.
  1483. *) Feature: the "ssl_session_ticket_key" directive.
  1484. Thanks to Piotr Sikora.
  1485. *) Bugfix: the directive "add_header Cache-Control ''" added a
  1486. "Cache-Control" response header line with an empty value.
  1487. *) Bugfix: the "satisfy any" directive might return 403 error instead of
  1488. 401 if auth_request and auth_basic directives were used.
  1489. Thanks to Jan Marc Hoffmann.
  1490. *) Bugfix: the "accept_filter" and "deferred" parameters of the "listen"
  1491. directive were ignored for listen sockets created during binary
  1492. upgrade.
  1493. Thanks to Piotr Sikora.
  1494. *) Bugfix: some data received from a backend with unbufferred proxy
  1495. might not be sent to a client immediately if "gzip" or "gunzip"
  1496. directives were used.
  1497. Thanks to Yichun Zhang.
  1498. *) Bugfix: in error handling in ngx_http_gunzip_filter_module.
  1499. *) Bugfix: responses might hang if the ngx_http_spdy_module was used
  1500. with the "auth_request" directive.
  1501. *) Bugfix: memory leak in nginx/Windows.
  1502. Changes with nginx 1.5.6 01 Oct 2013
  1503. *) Feature: the "fastcgi_buffering" directive.
  1504. *) Feature: the "proxy_ssl_protocols" and "proxy_ssl_ciphers"
  1505. directives.
  1506. Thanks to Piotr Sikora.
  1507. *) Feature: optimization of SSL handshakes when using long certificate
  1508. chains.
  1509. *) Feature: the mail proxy supports SMTP pipelining.
  1510. *) Bugfix: in the ngx_http_auth_basic_module when using "$apr1$"
  1511. password encryption method.
  1512. Thanks to Markus Linnala.
  1513. *) Bugfix: in MacOSX, Cygwin, and nginx/Windows incorrect location might
  1514. be used to process a request if locations were given using characters
  1515. in different cases.
  1516. *) Bugfix: automatic redirect with appended trailing slash for proxied
  1517. locations might not work.
  1518. *) Bugfix: in the mail proxy server.
  1519. *) Bugfix: in the ngx_http_spdy_module.
  1520. Changes with nginx 1.5.5 17 Sep 2013
  1521. *) Change: now nginx assumes HTTP/1.0 by default if it is not able to
  1522. detect protocol reliably.
  1523. *) Feature: the "disable_symlinks" directive now uses O_PATH on Linux.
  1524. *) Feature: now nginx uses EPOLLRDHUP events to detect premature
  1525. connection close by clients if the "epoll" method is used.
  1526. *) Bugfix: in the "valid_referers" directive if the "server_names"
  1527. parameter was used.
  1528. *) Bugfix: the $request_time variable did not work in nginx/Windows.
  1529. *) Bugfix: in the "image_filter" directive.
  1530. Thanks to Lanshun Zhou.
  1531. *) Bugfix: OpenSSL 1.0.1f compatibility.
  1532. Thanks to Piotr Sikora.
  1533. Changes with nginx 1.5.4 27 Aug 2013
  1534. *) Change: the "js" extension MIME type has been changed to
  1535. "application/javascript"; default value of the "charset_types"
  1536. directive was changed accordingly.
  1537. *) Change: now the "image_filter" directive with the "size" parameter
  1538. returns responses with the "application/json" MIME type.
  1539. *) Feature: the ngx_http_auth_request_module.
  1540. *) Bugfix: a segmentation fault might occur on start or during
  1541. reconfiguration if the "try_files" directive was used with an empty
  1542. parameter.
  1543. *) Bugfix: memory leak if relative paths were specified using variables
  1544. in the "root" or "auth_basic_user_file" directives.
  1545. *) Bugfix: the "valid_referers" directive incorrectly executed regular
  1546. expressions if a "Referer" header started with "https://".
  1547. Thanks to Liangbin Li.
  1548. *) Bugfix: responses might hang if subrequests were used and an SSL
  1549. handshake error happened during subrequest processing.
  1550. Thanks to Aviram Cohen.
  1551. *) Bugfix: in the ngx_http_autoindex_module.
  1552. *) Bugfix: in the ngx_http_spdy_module.
  1553. Changes with nginx 1.5.3 30 Jul 2013
  1554. *) Change in internal API: now u->length defaults to -1 if working with
  1555. backends in unbuffered mode.
  1556. *) Change: now after receiving an incomplete response from a backend
  1557. server nginx tries to send an available part of the response to a
  1558. client, and then closes client connection.
  1559. *) Bugfix: a segmentation fault might occur in a worker process if the
  1560. ngx_http_spdy_module was used with the "client_body_in_file_only"
  1561. directive.
  1562. *) Bugfix: the "so_keepalive" parameter of the "listen" directive might
  1563. be handled incorrectly on DragonFlyBSD.
  1564. Thanks to Sepherosa Ziehau.
  1565. *) Bugfix: in the ngx_http_xslt_filter_module.
  1566. *) Bugfix: in the ngx_http_sub_filter_module.
  1567. Changes with nginx 1.5.2 02 Jul 2013
  1568. *) Feature: now several "error_log" directives can be used.
  1569. *) Bugfix: the $r->header_in() embedded perl method did not return value
  1570. of the "Cookie" and "X-Forwarded-For" request header lines; the bug
  1571. had appeared in 1.3.14.
  1572. *) Bugfix: in the ngx_http_spdy_module.
  1573. Thanks to Jim Radford.
  1574. *) Bugfix: nginx could not be built on Linux with x32 ABI.
  1575. Thanks to Serguei Ivantsov.
  1576. Changes with nginx 1.5.1 04 Jun 2013
  1577. *) Feature: the "ssi_last_modified", "sub_filter_last_modified", and
  1578. "xslt_last_modified" directives.
  1579. Thanks to Alexey Kolpakov.
  1580. *) Feature: the "http_403" parameter of the "proxy_next_upstream",
  1581. "fastcgi_next_upstream", "scgi_next_upstream", and
  1582. "uwsgi_next_upstream" directives.
  1583. *) Feature: the "allow" and "deny" directives now support unix domain
  1584. sockets.
  1585. *) Bugfix: nginx could not be built with the ngx_mail_ssl_module, but
  1586. without ngx_http_ssl_module; the bug had appeared in 1.3.14.
  1587. *) Bugfix: in the "proxy_set_body" directive.
  1588. Thanks to Lanshun Zhou.
  1589. *) Bugfix: in the "lingering_time" directive.
  1590. Thanks to Lanshun Zhou.
  1591. *) Bugfix: the "fail_timeout" parameter of the "server" directive in the
  1592. "upstream" context might not work if "max_fails" parameter was used;
  1593. the bug had appeared in 1.3.0.
  1594. *) Bugfix: a segmentation fault might occur in a worker process if the
  1595. "ssl_stapling" directive was used.
  1596. Thanks to Piotr Sikora.
  1597. *) Bugfix: in the mail proxy server.
  1598. Thanks to Filipe Da Silva.
  1599. *) Bugfix: nginx/Windows might stop accepting connections if several
  1600. worker processes were used.
  1601. Changes with nginx 1.5.0 07 May 2013
  1602. *) Security: a stack-based buffer overflow might occur in a worker
  1603. process while handling a specially crafted request, potentially
  1604. resulting in arbitrary code execution (CVE-2013-2028); the bug had
  1605. appeared in 1.3.9.
  1606. Thanks to Greg MacManus, iSIGHT Partners Labs.
  1607. Changes with nginx 1.4.0 24 Apr 2013
  1608. *) Bugfix: nginx could not be built with the ngx_http_perl_module if the
  1609. --with-openssl option was used; the bug had appeared in 1.3.16.
  1610. *) Bugfix: in a request body handling in the ngx_http_perl_module; the
  1611. bug had appeared in 1.3.9.
  1612. Changes with nginx 1.3.16 16 Apr 2013
  1613. *) Bugfix: a segmentation fault might occur in a worker process if
  1614. subrequests were used; the bug had appeared in 1.3.9.
  1615. *) Bugfix: the "tcp_nodelay" directive caused an error if a WebSocket
  1616. connection was proxied into a unix domain socket.
  1617. *) Bugfix: the $upstream_response_length variable has an incorrect value
  1618. "0" if buffering was not used.
  1619. Thanks to Piotr Sikora.
  1620. *) Bugfix: in the eventport and /dev/poll methods.
  1621. Changes with nginx 1.3.15 26 Mar 2013
  1622. *) Change: opening and closing a connection without sending any data in
  1623. it is no longer logged to access_log with error code 400.
  1624. *) Feature: the ngx_http_spdy_module.
  1625. Thanks to Automattic for sponsoring this work.
  1626. *) Feature: the "limit_req_status" and "limit_conn_status" directives.
  1627. Thanks to Nick Marden.
  1628. *) Feature: the "image_filter_interlace" directive.
  1629. Thanks to Ian Babrou.
  1630. *) Feature: $connections_waiting variable in the
  1631. ngx_http_stub_status_module.
  1632. *) Feature: the mail proxy module now supports IPv6 backends.
  1633. *) Bugfix: request body might be transmitted incorrectly when retrying a
  1634. request to the next upstream server; the bug had appeared in 1.3.9.
  1635. Thanks to Piotr Sikora.
  1636. *) Bugfix: in the "client_body_in_file_only" directive; the bug had
  1637. appeared in 1.3.9.
  1638. *) Bugfix: responses might hang if subrequests were used and a DNS error
  1639. happened during subrequest processing.
  1640. Thanks to Lanshun Zhou.
  1641. *) Bugfix: in backend usage accounting.
  1642. Changes with nginx 1.3.14 05 Mar 2013
  1643. *) Feature: $connections_active, $connections_reading, and
  1644. $connections_writing variables in the ngx_http_stub_status_module.
  1645. *) Feature: support of WebSocket connections in the
  1646. ngx_http_uwsgi_module and ngx_http_scgi_module.
  1647. *) Bugfix: in virtual servers handling with SNI.
  1648. *) Bugfix: new sessions were not always stored if the "ssl_session_cache
  1649. shared" directive was used and there was no free space in shared
  1650. memory.
  1651. Thanks to Piotr Sikora.
  1652. *) Bugfix: multiple X-Forwarded-For headers were handled incorrectly.
  1653. Thanks to Neal Poole for sponsoring this work.
  1654. *) Bugfix: in the ngx_http_mp4_module.
  1655. Thanks to Gernot Vormayr.
  1656. Changes with nginx 1.3.13 19 Feb 2013
  1657. *) Change: a compiler with name "cc" is now used by default.
  1658. *) Feature: support for proxying of WebSocket connections.
  1659. Thanks to Apcera and CloudBees for sponsoring this work.
  1660. *) Feature: the "auth_basic_user_file" directive supports "{SHA}"
  1661. password encryption method.
  1662. Thanks to Louis Opter.
  1663. Changes with nginx 1.3.12 05 Feb 2013
  1664. *) Feature: variables support in the "proxy_bind", "fastcgi_bind",
  1665. "memcached_bind", "scgi_bind", and "uwsgi_bind" directives.
  1666. *) Feature: the $pipe, $request_length, $time_iso8601, and $time_local
  1667. variables can now be used not only in the "log_format" directive.
  1668. Thanks to Kiril Kalchev.
  1669. *) Feature: IPv6 support in the ngx_http_geoip_module.
  1670. Thanks to Gregor Kališnik.
  1671. *) Bugfix: in the "proxy_method" directive.
  1672. *) Bugfix: a segmentation fault might occur in a worker process if
  1673. resolver was used with the poll method.
  1674. *) Bugfix: nginx might hog CPU during SSL handshake with a backend if
  1675. the select, poll, or /dev/poll methods were used.
  1676. *) Bugfix: the "[crit] SSL_write() failed (SSL:)" error.
  1677. *) Bugfix: in the "client_body_in_file_only" directive; the bug had
  1678. appeared in 1.3.9.
  1679. *) Bugfix: in the "fastcgi_keep_conn" directive.
  1680. Changes with nginx 1.3.11 10 Jan 2013
  1681. *) Bugfix: a segmentation fault might occur if logging was used; the bug
  1682. had appeared in 1.3.10.
  1683. *) Bugfix: the "proxy_pass" directive did not work with IP addresses
  1684. without port specified; the bug had appeared in 1.3.10.
  1685. *) Bugfix: a segmentation fault occurred on start or during
  1686. reconfiguration if the "keepalive" directive was specified more than
  1687. once in a single upstream block.
  1688. *) Bugfix: parameter "default" of the "geo" directive did not set
  1689. default value for IPv6 addresses.
  1690. Changes with nginx 1.3.10 25 Dec 2012
  1691. *) Change: domain names specified in configuration file are now resolved
  1692. to IPv6 addresses as well as IPv4 ones.
  1693. *) Change: now if the "include" directive with mask is used on Unix
  1694. systems, included files are sorted in alphabetical order.
  1695. *) Change: the "add_header" directive adds headers to 201 responses.
  1696. *) Feature: the "geo" directive now supports IPv6 addresses in CIDR
  1697. notation.
  1698. *) Feature: the "flush" and "gzip" parameters of the "access_log"
  1699. directive.
  1700. *) Feature: variables support in the "auth_basic" directive.
  1701. *) Bugfix: nginx could not be built with the ngx_http_perl_module in
  1702. some cases.
  1703. *) Bugfix: a segmentation fault might occur in a worker process if the
  1704. ngx_http_xslt_module was used.
  1705. *) Bugfix: nginx could not be built on MacOSX in some cases.
  1706. Thanks to Piotr Sikora.
  1707. *) Bugfix: the "limit_rate" directive with high rates might result in
  1708. truncated responses on 32-bit platforms.
  1709. Thanks to Alexey Antropov.
  1710. *) Bugfix: a segmentation fault might occur in a worker process if the
  1711. "if" directive was used.
  1712. Thanks to Piotr Sikora.
  1713. *) Bugfix: a "100 Continue" response was issued with "413 Request Entity
  1714. Too Large" responses.
  1715. *) Bugfix: the "image_filter", "image_filter_jpeg_quality" and
  1716. "image_filter_sharpen" directives might be inherited incorrectly.
  1717. Thanks to Ian Babrou.
  1718. *) Bugfix: "crypt_r() failed" errors might appear if the "auth_basic"
  1719. directive was used on Linux.
  1720. *) Bugfix: in backup servers handling.
  1721. Thanks to Thomas Chen.
  1722. *) Bugfix: proxied HEAD requests might return incorrect response if the
  1723. "gzip" directive was used.
  1724. Changes with nginx 1.3.9 27 Nov 2012
  1725. *) Feature: support for chunked transfer encoding while reading client
  1726. request body.
  1727. *) Feature: the $request_time and $msec variables can now be used not
  1728. only in the "log_format" directive.
  1729. *) Bugfix: cache manager and cache loader processes might not be able to
  1730. start if more than 512 listen sockets were used.
  1731. *) Bugfix: in the ngx_http_dav_module.
  1732. Changes with nginx 1.3.8 30 Oct 2012
  1733. *) Feature: the "optional_no_ca" parameter of the "ssl_verify_client"
  1734. directive.
  1735. Thanks to Mike Kazantsev and Eric O'Connor.
  1736. *) Feature: the $bytes_sent, $connection, and $connection_requests
  1737. variables can now be used not only in the "log_format" directive.
  1738. Thanks to Benjamin Grössing.
  1739. *) Feature: the "auto" parameter of the "worker_processes" directive.
  1740. *) Bugfix: "cache file ... has md5 collision" alert.
  1741. *) Bugfix: in the ngx_http_gunzip_filter_module.
  1742. *) Bugfix: in the "ssl_stapling" directive.
  1743. Changes with nginx 1.3.7 02 Oct 2012
  1744. *) Feature: OCSP stapling support.
  1745. Thanks to Comodo, DigiCert and GlobalSign for sponsoring this work.
  1746. *) Feature: the "ssl_trusted_certificate" directive.
  1747. *) Feature: resolver now randomly rotates addresses returned from cache.
  1748. Thanks to Anton Jouline.
  1749. *) Bugfix: OpenSSL 0.9.7 compatibility.
  1750. Changes with nginx 1.3.6 12 Sep 2012
  1751. *) Feature: the ngx_http_gunzip_filter_module.
  1752. *) Feature: the "memcached_gzip_flag" directive.
  1753. *) Feature: the "always" parameter of the "gzip_static" directive.
  1754. *) Bugfix: in the "limit_req" directive; the bug had appeared in 1.1.14.
  1755. Thanks to Charles Chen.
  1756. *) Bugfix: nginx could not be built by gcc 4.7 with -O2 optimization if
  1757. the --with-ipv6 option was used.
  1758. Changes with nginx 1.3.5 21 Aug 2012
  1759. *) Change: the ngx_http_mp4_module module no longer skips tracks in
  1760. formats other than H.264 and AAC.
  1761. *) Bugfix: a segmentation fault might occur in a worker process if the
  1762. "map" directive was used with variables as values.
  1763. *) Bugfix: a segmentation fault might occur in a worker process if the
  1764. "geo" directive was used with the "ranges" parameter but without the
  1765. "default" parameter; the bug had appeared in 0.8.43.
  1766. Thanks to Zhen Chen and Weibin Yao.
  1767. *) Bugfix: in the -p command-line parameter handling.
  1768. *) Bugfix: in the mail proxy server.
  1769. *) Bugfix: of minor potential bugs.
  1770. Thanks to Coverity.
  1771. *) Bugfix: nginx/Windows could not be built with Visual Studio 2005
  1772. Express.
  1773. Thanks to HAYASHI Kentaro.
  1774. Changes with nginx 1.3.4 31 Jul 2012
  1775. *) Change: the "ipv6only" parameter is now turned on by default for
  1776. listening IPv6 sockets.
  1777. *) Feature: the Clang compiler support.
  1778. *) Bugfix: extra listening sockets might be created.
  1779. Thanks to Roman Odaisky.
  1780. *) Bugfix: nginx/Windows might hog CPU if a worker process failed to
  1781. start.
  1782. Thanks to Ricardo Villalobos Guevara.
  1783. *) Bugfix: the "proxy_pass_header", "fastcgi_pass_header",
  1784. "scgi_pass_header", "uwsgi_pass_header", "proxy_hide_header",
  1785. "fastcgi_hide_header", "scgi_hide_header", and "uwsgi_hide_header"
  1786. directives might be inherited incorrectly.
  1787. Changes with nginx 1.3.3 10 Jul 2012
  1788. *) Feature: entity tags support and the "etag" directive.
  1789. *) Bugfix: trailing dot in a source value was not ignored if the "map"
  1790. directive was used with the "hostnames" parameter.
  1791. *) Bugfix: incorrect location might be used to process a request if a
  1792. URI was changed via a "rewrite" directive before an internal redirect
  1793. to a named location.
  1794. Changes with nginx 1.3.2 26 Jun 2012
  1795. *) Change: the "single" parameter of the "keepalive" directive is now
  1796. ignored.
  1797. *) Change: SSL compression is now disabled when using all versions of
  1798. OpenSSL, including ones prior to 1.0.0.
  1799. *) Feature: it is now possible to use the "ip_hash" directive to balance
  1800. IPv6 clients.
  1801. *) Feature: the $status variable can now be used not only in the
  1802. "log_format" directive.
  1803. *) Bugfix: a segmentation fault might occur in a worker process on
  1804. shutdown if the "resolver" directive was used.
  1805. *) Bugfix: a segmentation fault might occur in a worker process if the
  1806. ngx_http_mp4_module was used.
  1807. *) Bugfix: in the ngx_http_mp4_module.
  1808. *) Bugfix: a segmentation fault might occur in a worker process if
  1809. conflicting wildcard server names were used.
  1810. *) Bugfix: nginx might be terminated abnormally on a SIGBUS signal on
  1811. ARM platform.
  1812. *) Bugfix: an alert "sendmsg() failed (9: Bad file number)" on HP-UX
  1813. while reconfiguration.
  1814. Changes with nginx 1.3.1 05 Jun 2012
  1815. *) Security: now nginx/Windows ignores trailing dot in URI path
  1816. component, and does not allow URIs with ":$" in it.
  1817. Thanks to Vladimir Kochetkov, Positive Research Center.
  1818. *) Feature: the "proxy_pass", "fastcgi_pass", "scgi_pass", "uwsgi_pass"
  1819. directives, and the "server" directive inside the "upstream" block,
  1820. now support IPv6 addresses.
  1821. *) Feature: the "resolver" directive now supports IPv6 addresses and an
  1822. optional port specification.
  1823. *) Feature: the "least_conn" directive inside the "upstream" block.
  1824. *) Feature: it is now possible to specify a weight for servers while
  1825. using the "ip_hash" directive.
  1826. *) Bugfix: a segmentation fault might occur in a worker process if the
  1827. "image_filter" directive was used; the bug had appeared in 1.3.0.
  1828. *) Bugfix: nginx could not be built with ngx_cpp_test_module; the bug
  1829. had appeared in 1.1.12.
  1830. *) Bugfix: access to variables from SSI and embedded perl module might
  1831. not work after reconfiguration.
  1832. Thanks to Yichun Zhang.
  1833. *) Bugfix: in the ngx_http_xslt_filter_module.
  1834. Thanks to Kuramoto Eiji.
  1835. *) Bugfix: memory leak if $geoip_org variable was used.
  1836. Thanks to Denis F. Latypoff.
  1837. *) Bugfix: in the "proxy_cookie_domain" and "proxy_cookie_path"
  1838. directives.
  1839. Changes with nginx 1.3.0 15 May 2012
  1840. *) Feature: the "debug_connection" directive now supports IPv6 addresses
  1841. and the "unix:" parameter.
  1842. *) Feature: the "set_real_ip_from" directive and the "proxy" parameter
  1843. of the "geo" directive now support IPv6 addresses.
  1844. *) Feature: the "real_ip_recursive", "geoip_proxy", and
  1845. "geoip_proxy_recursive" directives.
  1846. *) Feature: the "proxy_recursive" parameter of the "geo" directive.
  1847. *) Bugfix: a segmentation fault might occur in a worker process if the
  1848. "resolver" directive was used.
  1849. *) Bugfix: a segmentation fault might occur in a worker process if the
  1850. "fastcgi_pass", "scgi_pass", or "uwsgi_pass" directives were used and
  1851. backend returned incorrect response.
  1852. *) Bugfix: a segmentation fault might occur in a worker process if the
  1853. "rewrite" directive was used and new request arguments in a
  1854. replacement used variables.
  1855. *) Bugfix: nginx might hog CPU if the open file resource limit was
  1856. reached.
  1857. *) Bugfix: nginx might loop infinitely over backends if the
  1858. "proxy_next_upstream" directive with the "http_404" parameter was
  1859. used and there were backup servers specified in an upstream block.
  1860. *) Bugfix: adding the "down" parameter of the "server" directive might
  1861. cause unneeded client redistribution among backend servers if the
  1862. "ip_hash" directive was used.
  1863. *) Bugfix: socket leak.
  1864. Thanks to Yichun Zhang.
  1865. *) Bugfix: in the ngx_http_fastcgi_module.
  1866. Changes with nginx 1.2.0 23 Apr 2012
  1867. *) Bugfix: a segmentation fault might occur in a worker process if the
  1868. "try_files" directive was used; the bug had appeared in 1.1.19.
  1869. *) Bugfix: response might be truncated if there were more than IOV_MAX
  1870. buffers used.
  1871. *) Bugfix: in the "crop" parameter of the "image_filter" directive.
  1872. Thanks to Maxim Bublis.
  1873. Changes with nginx 1.1.19 12 Apr 2012
  1874. *) Security: specially crafted mp4 file might allow to overwrite memory
  1875. locations in a worker process if the ngx_http_mp4_module was used,
  1876. potentially resulting in arbitrary code execution (CVE-2012-2089).
  1877. Thanks to Matthew Daley.
  1878. *) Bugfix: nginx/Windows might be terminated abnormally.
  1879. Thanks to Vincent Lee.
  1880. *) Bugfix: nginx hogged CPU if all servers in an upstream were marked as
  1881. "backup".
  1882. *) Bugfix: the "allow" and "deny" directives might be inherited
  1883. incorrectly if they were used with IPv6 addresses.
  1884. *) Bugfix: the "modern_browser" and "ancient_browser" directives might
  1885. be inherited incorrectly.
  1886. *) Bugfix: timeouts might be handled incorrectly on Solaris/SPARC.
  1887. *) Bugfix: in the ngx_http_mp4_module.
  1888. Changes with nginx 1.1.18 28 Mar 2012
  1889. *) Change: keepalive connections are no longer disabled for Safari by
  1890. default.
  1891. *) Feature: the $connection_requests variable.
  1892. *) Feature: $tcpinfo_rtt, $tcpinfo_rttvar, $tcpinfo_snd_cwnd and
  1893. $tcpinfo_rcv_space variables.
  1894. *) Feature: the "worker_cpu_affinity" directive now works on FreeBSD.
  1895. *) Feature: the "xslt_param" and "xslt_string_param" directives.
  1896. Thanks to Samuel Behan.
  1897. *) Bugfix: in configure tests.
  1898. Thanks to Piotr Sikora.
  1899. *) Bugfix: in the ngx_http_xslt_filter_module.
  1900. *) Bugfix: nginx could not be built on Debian GNU/Hurd.
  1901. Changes with nginx 1.1.17 15 Mar 2012
  1902. *) Security: content of previously freed memory might be sent to a
  1903. client if backend returned specially crafted response.
  1904. Thanks to Matthew Daley.
  1905. *) Bugfix: in the embedded perl module if used from SSI.
  1906. Thanks to Matthew Daley.
  1907. *) Bugfix: in the ngx_http_uwsgi_module.
  1908. Changes with nginx 1.1.16 29 Feb 2012
  1909. *) Change: the simultaneous subrequest limit has been raised to 200.
  1910. *) Feature: the "from" parameter of the "disable_symlinks" directive.
  1911. *) Feature: the "return" and "error_page" directives can now be used to
  1912. return 307 redirections.
  1913. *) Bugfix: a segmentation fault might occur in a worker process if the
  1914. "resolver" directive was used and there was no "error_log" directive
  1915. specified at global level.
  1916. Thanks to Roman Arutyunyan.
  1917. *) Bugfix: a segmentation fault might occur in a worker process if the
  1918. "proxy_http_version 1.1" or "fastcgi_keep_conn on" directives were
  1919. used.
  1920. *) Bugfix: memory leaks.
  1921. Thanks to Lanshun Zhou.
  1922. *) Bugfix: in the "disable_symlinks" directive.
  1923. *) Bugfix: on ZFS filesystem disk cache size might be calculated
  1924. incorrectly; the bug had appeared in 1.0.1.
  1925. *) Bugfix: nginx could not be built by the icc 12.1 compiler.
  1926. *) Bugfix: nginx could not be built by gcc on Solaris; the bug had
  1927. appeared in 1.1.15.
  1928. Changes with nginx 1.1.15 15 Feb 2012
  1929. *) Feature: the "disable_symlinks" directive.
  1930. *) Feature: the "proxy_cookie_domain" and "proxy_cookie_path"
  1931. directives.
  1932. *) Bugfix: nginx might log incorrect error "upstream prematurely closed
  1933. connection" instead of correct "upstream sent too big header" one.
  1934. Thanks to Feibo Li.
  1935. *) Bugfix: nginx could not be built with the ngx_http_perl_module if the
  1936. --with-openssl option was used.
  1937. *) Bugfix: the number of internal redirects to named locations was not
  1938. limited.
  1939. *) Bugfix: calling $r->flush() multiple times might cause errors in the
  1940. ngx_http_gzip_filter_module.
  1941. *) Bugfix: temporary files might be not removed if the "proxy_store"
  1942. directive was used with SSI includes.
  1943. *) Bugfix: in some cases non-cacheable variables (such as the $args
  1944. variable) returned old empty cached value.
  1945. *) Bugfix: a segmentation fault might occur in a worker process if too
  1946. many SSI subrequests were issued simultaneously; the bug had appeared
  1947. in 0.7.25.
  1948. Changes with nginx 1.1.14 30 Jan 2012
  1949. *) Feature: multiple "limit_req" limits may be used simultaneously.
  1950. *) Bugfix: in error handling while connecting to a backend.
  1951. Thanks to Piotr Sikora.
  1952. *) Bugfix: in AIO error handling on FreeBSD.
  1953. *) Bugfix: in the OpenSSL library initialization.
  1954. *) Bugfix: the "proxy_redirect" directives might be inherited
  1955. incorrectly.
  1956. *) Bugfix: memory leak during reconfiguration if the "pcre_jit"
  1957. directive was used.
  1958. Changes with nginx 1.1.13 16 Jan 2012
  1959. *) Feature: the "TLSv1.1" and "TLSv1.2" parameters of the
  1960. "ssl_protocols" directive.
  1961. *) Bugfix: the "limit_req" directive parameters were not inherited
  1962. correctly; the bug had appeared in 1.1.12.
  1963. *) Bugfix: the "proxy_redirect" directive incorrectly processed
  1964. "Refresh" header if regular expression were used.
  1965. *) Bugfix: the "proxy_cache_use_stale" directive with "error" parameter
  1966. did not return answer from cache if there were no live upstreams.
  1967. *) Bugfix: the "worker_cpu_affinity" directive might not work.
  1968. *) Bugfix: nginx could not be built on Solaris; the bug had appeared in
  1969. 1.1.12.
  1970. *) Bugfix: in the ngx_http_mp4_module.
  1971. Changes with nginx 1.1.12 26 Dec 2011
  1972. *) Change: a "proxy_pass" directive without URI part now uses changed
  1973. URI after redirection with the "error_page" directive.
  1974. Thanks to Lanshun Zhou.
  1975. *) Feature: the "proxy/fastcgi/scgi/uwsgi_cache_lock",
  1976. "proxy/fastcgi/scgi/uwsgi_cache_lock_timeout" directives.
  1977. *) Feature: the "pcre_jit" directive.
  1978. *) Feature: the "if" SSI command supports captures in regular
  1979. expressions.
  1980. *) Bugfix: the "if" SSI command did not work inside the "block" command.
  1981. *) Bugfix: the "limit_conn_log_level" and "limit_req_log_level"
  1982. directives might not work.
  1983. *) Bugfix: the "limit_rate" directive did not allow to use full
  1984. throughput, even if limit value was very high.
  1985. *) Bugfix: the "sendfile_max_chunk" directive did not work, if the
  1986. "limit_rate" directive was used.
  1987. *) Bugfix: a "proxy_pass" directive without URI part always used
  1988. original request URI if variables were used.
  1989. *) Bugfix: a "proxy_pass" directive without URI part might use original
  1990. request after redirection with the "try_files" directive.
  1991. Thanks to Lanshun Zhou.
  1992. *) Bugfix: in the ngx_http_scgi_module.
  1993. *) Bugfix: in the ngx_http_mp4_module.
  1994. *) Bugfix: nginx could not be built on Solaris; the bug had appeared in
  1995. 1.1.9.
  1996. Changes with nginx 1.1.11 12 Dec 2011
  1997. *) Feature: the "so_keepalive" parameter of the "listen" directive.
  1998. Thanks to Vsevolod Stakhov.
  1999. *) Feature: the "if_not_empty" parameter of the
  2000. "fastcgi/scgi/uwsgi_param" directives.
  2001. *) Feature: the $https variable.
  2002. *) Feature: the "proxy_redirect" directive supports variables in the
  2003. first parameter.
  2004. *) Feature: the "proxy_redirect" directive supports regular expressions.
  2005. *) Bugfix: the $sent_http_cache_control variable might contain a wrong
  2006. value if the "expires" directive was used.
  2007. Thanks to Yichun Zhang.
  2008. *) Bugfix: the "read_ahead" directive might not work combined with
  2009. "try_files" and "open_file_cache".
  2010. *) Bugfix: a segmentation fault might occur in a worker process if small
  2011. time was used in the "inactive" parameter of the "proxy_cache_path"
  2012. directive.
  2013. *) Bugfix: responses from cache might hang.
  2014. Changes with nginx 1.1.10 30 Nov 2011
  2015. *) Bugfix: a segmentation fault occurred in a worker process if AIO was
  2016. used on Linux; the bug had appeared in 1.1.9.
  2017. Changes with nginx 1.1.9 28 Nov 2011
  2018. *) Change: now double quotes are encoded in an "echo" SSI-command
  2019. output.
  2020. Thanks to Zaur Abasmirzoev.
  2021. *) Feature: the "valid" parameter of the "resolver" directive. By
  2022. default TTL returned by a DNS server is used.
  2023. Thanks to Kirill A. Korinskiy.
  2024. *) Bugfix: nginx might hang after a worker process abnormal termination.
  2025. *) Bugfix: a segmentation fault might occur in a worker process if SNI
  2026. was used; the bug had appeared in 1.1.2.
  2027. *) Bugfix: in the "keepalive_disable" directive; the bug had appeared in
  2028. 1.1.8.
  2029. Thanks to Alexander Usov.
  2030. *) Bugfix: SIGWINCH signal did not work after first binary upgrade; the
  2031. bug had appeared in 1.1.1.
  2032. *) Bugfix: backend responses with length not matching "Content-Length"
  2033. header line are no longer cached.
  2034. *) Bugfix: in the "scgi_param" directive, if complex parameters were
  2035. used.
  2036. *) Bugfix: in the "epoll" event method.
  2037. Thanks to Yichun Zhang.
  2038. *) Bugfix: in the ngx_http_flv_module.
  2039. Thanks to Piotr Sikora.
  2040. *) Bugfix: in the ngx_http_mp4_module.
  2041. *) Bugfix: IPv6 addresses are now handled properly in a request line and
  2042. in a "Host" request header line.
  2043. *) Bugfix: "add_header" and "expires" directives did not work if a
  2044. request was proxied and response status code was 206.
  2045. *) Bugfix: nginx could not be built on FreeBSD 10.
  2046. *) Bugfix: nginx could not be built on AIX.
  2047. Changes with nginx 1.1.8 14 Nov 2011
  2048. *) Change: the ngx_http_limit_zone_module was renamed to the
  2049. ngx_http_limit_conn_module.
  2050. *) Change: the "limit_zone" directive was superseded by the
  2051. "limit_conn_zone" directive with a new syntax.
  2052. *) Feature: support for multiple "limit_conn" limits on the same level.
  2053. *) Feature: the "image_filter_sharpen" directive.
  2054. *) Bugfix: a segmentation fault might occur in a worker process if
  2055. resolver got a big DNS response.
  2056. Thanks to Ben Hawkes.
  2057. *) Bugfix: in cache key calculation if internal MD5 implementation was
  2058. used; the bug had appeared in 1.0.4.
  2059. *) Bugfix: the "If-Modified-Since", "If-Range", etc. client request
  2060. header lines might be passed to backend while caching; or not passed
  2061. without caching if caching was enabled in another part of the
  2062. configuration.
  2063. *) Bugfix: the module ngx_http_mp4_module sent incorrect
  2064. "Content-Length" response header line if the "start" argument was
  2065. used.
  2066. Thanks to Piotr Sikora.
  2067. Changes with nginx 1.1.7 31 Oct 2011
  2068. *) Feature: support of several DNS servers in the "resolver" directive.
  2069. Thanks to Kirill A. Korinskiy.
  2070. *) Bugfix: a segmentation fault occurred on start or during
  2071. reconfiguration if the "ssl" directive was used at http level and
  2072. there was no "ssl_certificate" defined.
  2073. *) Bugfix: reduced memory consumption while proxying big files if they
  2074. were buffered to disk.
  2075. *) Bugfix: a segmentation fault might occur in a worker process if
  2076. "proxy_http_version 1.1" directive was used.
  2077. *) Bugfix: in the "expires @time" directive.
  2078. Changes with nginx 1.1.6 17 Oct 2011
  2079. *) Change in internal API: now module context data are cleared while
  2080. internal redirect to named location.
  2081. Requested by Yichun Zhang.
  2082. *) Change: if a server in an upstream failed, only one request will be
  2083. sent to it after fail_timeout; the server will be considered alive if
  2084. it will successfully respond to the request.
  2085. *) Change: now the 0x7F-0xFF characters are escaped as \xXX in an
  2086. access_log.
  2087. *) Feature: "proxy/fastcgi/scgi/uwsgi_ignore_headers" directives support
  2088. the following additional values: X-Accel-Limit-Rate,
  2089. X-Accel-Buffering, X-Accel-Charset.
  2090. *) Feature: decrease of memory consumption if SSL is used.
  2091. *) Bugfix: some UTF-8 characters were processed incorrectly.
  2092. Thanks to Alexey Kuts.
  2093. *) Bugfix: the ngx_http_rewrite_module directives specified at "server"
  2094. level were executed twice if no matching locations were defined.
  2095. *) Bugfix: a socket leak might occurred if "aio sendfile" was used.
  2096. *) Bugfix: connections with fast clients might be closed after
  2097. send_timeout if file AIO was used.
  2098. *) Bugfix: in the ngx_http_autoindex_module.
  2099. *) Bugfix: the module ngx_http_mp4_module did not support seeking on
  2100. 32-bit platforms.
  2101. Changes with nginx 1.1.5 05 Oct 2011
  2102. *) Feature: the "uwsgi_buffering" and "scgi_buffering" directives.
  2103. Thanks to Peter Smit.
  2104. *) Bugfix: non-cacheable responses might be cached if
  2105. "proxy_cache_bypass" directive was used.
  2106. Thanks to John Ferlito.
  2107. *) Bugfix: in HTTP/1.1 support in the ngx_http_proxy_module.
  2108. *) Bugfix: cached responses with an empty body were returned
  2109. incorrectly; the bug had appeared in 0.8.31.
  2110. *) Bugfix: 201 responses of the ngx_http_dav_module were incorrect; the
  2111. bug had appeared in 0.8.32.
  2112. *) Bugfix: in the "return" directive.
  2113. *) Bugfix: the "ssl_session_cache builtin" directive caused segmentation
  2114. fault; the bug had appeared in 1.1.1.
  2115. Changes with nginx 1.1.4 20 Sep 2011
  2116. *) Feature: the ngx_http_upstream_keepalive module.
  2117. *) Feature: the "proxy_http_version" directive.
  2118. *) Feature: the "fastcgi_keep_conn" directive.
  2119. *) Feature: the "worker_aio_requests" directive.
  2120. *) Bugfix: if nginx was built --with-file-aio it could not be run on
  2121. Linux kernel which did not support AIO.
  2122. *) Bugfix: in Linux AIO error processing.
  2123. Thanks to Hagai Avrahami.
  2124. *) Bugfix: reduced memory consumption for long-lived requests.
  2125. *) Bugfix: the module ngx_http_mp4_module did not support 64-bit MP4
  2126. "co64" atom.
  2127. Changes with nginx 1.1.3 14 Sep 2011
  2128. *) Feature: the module ngx_http_mp4_module.
  2129. *) Bugfix: in Linux AIO combined with open_file_cache.
  2130. *) Bugfix: open_file_cache did not update file info on retest if file
  2131. was not atomically changed.
  2132. *) Bugfix: nginx could not be built on MacOSX 10.7.
  2133. Changes with nginx 1.1.2 05 Sep 2011
  2134. *) Change: now if total size of all ranges is greater than source
  2135. response size, then nginx disables ranges and returns just the source
  2136. response.
  2137. *) Feature: the "max_ranges" directive.
  2138. *) Bugfix: the "ssl_verify_client", "ssl_verify_depth", and
  2139. "ssl_prefer_server_ciphers" directives might work incorrectly if SNI
  2140. was used.
  2141. *) Bugfix: in the "proxy/fastcgi/scgi/uwsgi_ignore_client_abort"
  2142. directives.
  2143. Changes with nginx 1.1.1 22 Aug 2011
  2144. *) Change: now cache loader processes either as many files as specified
  2145. by "loader_files" parameter or works no longer than time specified by
  2146. the "loader_threshold" parameter during each iteration.
  2147. *) Change: now SIGWINCH signal works only in daemon mode.
  2148. *) Feature: now shared zones and caches use POSIX semaphores on Solaris.
  2149. Thanks to Den Ivanov.
  2150. *) Feature: accept filters are now supported on NetBSD.
  2151. *) Bugfix: nginx could not be built on Linux 3.0.
  2152. *) Bugfix: nginx did not use gzipping in some cases; the bug had
  2153. appeared in 1.1.0.
  2154. *) Bugfix: request body might be processed incorrectly if client used
  2155. pipelining.
  2156. *) Bugfix: in the "request_body_in_single_buf" directive.
  2157. *) Bugfix: in "proxy_set_body" and "proxy_pass_request_body" directives
  2158. if SSL connection to backend was used.
  2159. *) Bugfix: nginx hogged CPU if all servers in an upstream were marked as
  2160. "down".
  2161. *) Bugfix: a segmentation fault might occur during reconfiguration if
  2162. ssl_session_cache was defined but not used in previous configuration.
  2163. *) Bugfix: a segmentation fault might occur in a worker process if many
  2164. backup servers were used in an upstream.
  2165. *) Bugfix: a segmentation fault might occur in a worker process if
  2166. "fastcgi/scgi/uwsgi_param" directives were used with values starting
  2167. with "HTTP_"; the bug had appeared in 0.8.40.
  2168. Changes with nginx 1.1.0 01 Aug 2011
  2169. *) Feature: cache loader run time decrease.
  2170. *) Feature: "loader_files", "loader_sleep", and "loader_threshold"
  2171. options of the "proxy/fastcgi/scgi/uwsgi_cache_path" directives.
  2172. *) Feature: loading time decrease of configuration with large number of
  2173. HTTPS sites.
  2174. *) Feature: now nginx supports ECDHE key exchange ciphers.
  2175. Thanks to Adrian Kotelba.
  2176. *) Feature: the "lingering_close" directive.
  2177. Thanks to Maxim Dounin.
  2178. *) Bugfix: in closing connection for pipelined requests.
  2179. Thanks to Maxim Dounin.
  2180. *) Bugfix: nginx did not disable gzipping if client sent "gzip;q=0" in
  2181. "Accept-Encoding" request header line.
  2182. *) Bugfix: in timeout in unbuffered proxied mode.
  2183. Thanks to Maxim Dounin.
  2184. *) Bugfix: memory leaks when a "proxy_pass" directive contains variables
  2185. and proxies to an HTTPS backend.
  2186. Thanks to Maxim Dounin.
  2187. *) Bugfix: in parameter validation of a "proxy_pass" directive with
  2188. variables.
  2189. Thanks to Lanshun Zhou.
  2190. *) Bugfix: SSL did not work on QNX.
  2191. Thanks to Maxim Dounin.
  2192. *) Bugfix: SSL modules could not be built by gcc 4.6 without
  2193. --with-debug option.
  2194. Changes with nginx 1.0.5 19 Jul 2011
  2195. *) Change: now default SSL ciphers are "HIGH:!aNULL:!MD5".
  2196. Thanks to Rob Stradling.
  2197. *) Feature: the "referer_hash_max_size" and "referer_hash_bucket_size"
  2198. directives.
  2199. Thanks to Witold Filipczyk.
  2200. *) Feature: $uid_reset variable.
  2201. *) Bugfix: a segmentation fault might occur in a worker process, if a
  2202. caching was used.
  2203. Thanks to Lanshun Zhou.
  2204. *) Bugfix: worker processes may got caught in an endless loop during
  2205. reconfiguration, if a caching was used; the bug had appeared in
  2206. 0.8.48.
  2207. Thanks to Maxim Dounin.
  2208. *) Bugfix: "stalled cache updating" alert.
  2209. Thanks to Maxim Dounin.
  2210. Changes with nginx 1.0.4 01 Jun 2011
  2211. *) Change: now regular expressions case sensitivity in the "map"
  2212. directive is given by prefixes "~" or "~*".
  2213. *) Feature: now shared zones and caches use POSIX semaphores on Linux.
  2214. Thanks to Denis F. Latypoff.
  2215. *) Bugfix: "stalled cache updating" alert.
  2216. *) Bugfix: nginx could not be built --without-http_auth_basic_module;
  2217. the bug had appeared in 1.0.3.
  2218. Changes with nginx 1.0.3 25 May 2011
  2219. *) Feature: the "auth_basic_user_file" directive supports "$apr1",
  2220. "{PLAIN}", and "{SSHA}" password encryption methods.
  2221. Thanks to Maxim Dounin.
  2222. *) Feature: the "geoip_org" directive and $geoip_org variable.
  2223. Thanks to Alexander Uskov, Arnaud Granal, and Denis F. Latypoff.
  2224. *) Feature: ngx_http_geo_module and ngx_http_geoip_module support IPv4
  2225. addresses mapped to IPv6 addresses.
  2226. *) Bugfix: a segmentation fault occurred in a worker process during
  2227. testing IPv4 address mapped to IPv6 address, if access or deny rules
  2228. were defined only for IPv6; the bug had appeared in 0.8.22.
  2229. *) Bugfix: a cached response may be broken if "proxy/fastcgi/scgi/
  2230. uwsgi_cache_bypass" and "proxy/fastcgi/scgi/uwsgi_no_cache" directive
  2231. values were different; the bug had appeared in 0.8.46.
  2232. Changes with nginx 1.0.2 10 May 2011
  2233. *) Feature: now shared zones and caches use POSIX semaphores.
  2234. *) Bugfix: in the "rotate" parameter of the "image_filter" directive.
  2235. Thanks to Adam Bocim.
  2236. *) Bugfix: nginx could not be built on Solaris; the bug had appeared in
  2237. 1.0.1.
  2238. Changes with nginx 1.0.1 03 May 2011
  2239. *) Change: now the "split_clients" directive uses MurmurHash2 algorithm
  2240. because of better distribution.
  2241. Thanks to Oleg Mamontov.
  2242. *) Change: now long strings starting with zero are not considered as
  2243. false values.
  2244. Thanks to Maxim Dounin.
  2245. *) Change: now nginx uses a default listen backlog value 511 on Linux.
  2246. *) Feature: the $upstream_... variables may be used in the SSI and perl
  2247. modules.
  2248. *) Bugfix: now nginx limits better disk cache size.
  2249. Thanks to Oleg Mamontov.
  2250. *) Bugfix: a segmentation fault might occur while parsing incorrect IPv4
  2251. address; the bug had appeared in 0.9.3.
  2252. Thanks to Maxim Dounin.
  2253. *) Bugfix: nginx could not be built by gcc 4.6 without --with-debug
  2254. option.
  2255. *) Bugfix: nginx could not be built on Solaris 9 and earlier; the bug
  2256. had appeared in 0.9.3.
  2257. Thanks to Dagobert Michelsen.
  2258. *) Bugfix: $request_time variable had invalid values if subrequests were
  2259. used; the bug had appeared in 0.8.47.
  2260. Thanks to Igor A. Valcov.
  2261. Changes with nginx 1.0.0 12 Apr 2011
  2262. *) Bugfix: a cache manager might hog CPU after reload.
  2263. Thanks to Maxim Dounin.
  2264. *) Bugfix: an "image_filter crop" directive worked incorrectly coupled
  2265. with an "image_filter rotate 180" directive.
  2266. *) Bugfix: a "satisfy any" directive disabled custom 401 error page.
  2267. Changes with nginx 0.9.7 04 Apr 2011
  2268. *) Feature: now keepalive connections may be closed premature, if there
  2269. are no free worker connections.
  2270. Thanks to Maxim Dounin.
  2271. *) Feature: the "rotate" parameter of the "image_filter" directive.
  2272. Thanks to Adam Bocim.
  2273. *) Bugfix: a case when a backend in "fastcgi_pass", "scgi_pass", or
  2274. "uwsgi_pass" directives is given by expression and refers to a
  2275. defined upstream.
  2276. Changes with nginx 0.9.6 21 Mar 2011
  2277. *) Feature: the "map" directive supports regular expressions as value of
  2278. the first parameter.
  2279. *) Feature: $time_iso8601 access_log variable.
  2280. Thanks to Michael Lustfield.
  2281. Changes with nginx 0.9.5 21 Feb 2011
  2282. *) Change: now nginx uses a default listen backlog value -1 on Linux.
  2283. Thanks to Andrei Nigmatulin.
  2284. *) Feature: the "utf8" parameter of "geoip_country" and "geoip_city"
  2285. directives.
  2286. Thanks to Denis F. Latypoff.
  2287. *) Bugfix: in a default "proxy_redirect" directive if "proxy_pass"
  2288. directive has no URI part.
  2289. Thanks to Maxim Dounin.
  2290. *) Bugfix: an "error_page" directive did not work with nonstandard error
  2291. codes; the bug had appeared in 0.8.53.
  2292. Thanks to Maxim Dounin.
  2293. Changes with nginx 0.9.4 21 Jan 2011
  2294. *) Feature: the "server_name" directive supports the $hostname variable.
  2295. *) Feature: 494 code for "Request Header Too Large" error.
  2296. Changes with nginx 0.9.3 13 Dec 2010
  2297. *) Bugfix: if there was a single server for given IPv6 address:port
  2298. pair, then captures in regular expressions in a "server_name"
  2299. directive did not work.
  2300. *) Bugfix: nginx could not be built on Solaris; the bug had appeared in
  2301. 0.9.0.
  2302. Changes with nginx 0.9.2 06 Dec 2010
  2303. *) Feature: the "If-Unmodified-Since" client request header line
  2304. support.
  2305. *) Workaround: fallback to accept() syscall if accept4() was not
  2306. implemented; the issue had appeared in 0.9.0.
  2307. *) Bugfix: nginx could not be built on Cygwin; the bug had appeared in
  2308. 0.9.0.
  2309. *) Bugfix: for OpenSSL vulnerability CVE-2010-4180.
  2310. Thanks to Maxim Dounin.
  2311. Changes with nginx 0.9.1 30 Nov 2010
  2312. *) Bugfix: "return CODE message" directives did not work; the bug had
  2313. appeared in 0.9.0.
  2314. Changes with nginx 0.9.0 29 Nov 2010
  2315. *) Feature: the "keepalive_disable" directive.
  2316. *) Feature: the "map" directive supports variables as value of a defined
  2317. variable.
  2318. *) Feature: the "map" directive supports empty strings as value of the
  2319. first parameter.
  2320. *) Feature: the "map" directive supports expressions as the first
  2321. parameter.
  2322. *) Feature: nginx(8) manual page.
  2323. Thanks to Sergey Osokin.
  2324. *) Feature: Linux accept4() support.
  2325. Thanks to Simon Liu.
  2326. *) Workaround: elimination of Linux linker warning about "sys_errlist"
  2327. and "sys_nerr"; the warning had appeared in 0.8.35.
  2328. *) Bugfix: a segmentation fault might occur in a worker process, if the
  2329. "auth_basic" directive was used.
  2330. Thanks to Michail Laletin.
  2331. *) Bugfix: compatibility with ngx_http_eval_module; the bug had appeared
  2332. in 0.8.42.
  2333. Changes with nginx 0.8.53 18 Oct 2010
  2334. *) Feature: now the "error_page" directive allows to change a status
  2335. code in a redirect.
  2336. *) Feature: the "gzip_disable" directive supports special "degradation"
  2337. mask.
  2338. *) Bugfix: a socket leak might occurred if file AIO was used.
  2339. Thanks to Maxim Dounin.
  2340. *) Bugfix: if the first server had no "listen" directive and there was
  2341. no explicit default server, then a next server with a "listen"
  2342. directive became the default server; the bug had appeared in 0.8.21.
  2343. Changes with nginx 0.8.52 28 Sep 2010
  2344. *) Bugfix: nginx used SSL mode for a listen socket if any listen option
  2345. was set; the bug had appeared in 0.8.51.
  2346. Changes with nginx 0.8.51 27 Sep 2010
  2347. *) Change: the "secure_link_expires" directive has been canceled.
  2348. *) Change: a logging level of resolver errors has been lowered from
  2349. "alert" to "error".
  2350. *) Feature: now a listen socket "ssl" parameter may be set several
  2351. times.
  2352. Changes with nginx 0.8.50 02 Sep 2010
  2353. *) Feature: the "secure_link", "secure_link_md5", and
  2354. "secure_link_expires" directives of the ngx_http_secure_link_module.
  2355. *) Feature: the -q switch.
  2356. Thanks to Gena Makhomed.
  2357. *) Bugfix: worker processes may got caught in an endless loop during
  2358. reconfiguration, if a caching was used; the bug had appeared in
  2359. 0.8.48.
  2360. *) Bugfix: in the "gzip_disable" directive.
  2361. Thanks to Derrick Petzold.
  2362. *) Bugfix: nginx/Windows could not send stop, quit, reopen, and reload
  2363. signals to a process run in other session.
  2364. Changes with nginx 0.8.49 09 Aug 2010
  2365. *) Feature: the "image_filter_jpeg_quality" directive supports
  2366. variables.
  2367. *) Bugfix: a segmentation fault might occur in a worker process, if the
  2368. $geoip_region_name variables was used; the bug had appeared in
  2369. 0.8.48.
  2370. *) Bugfix: errors intercepted by error_page were cached only for next
  2371. request; the bug had appeared in 0.8.48.
  2372. Changes with nginx 0.8.48 03 Aug 2010
  2373. *) Change: now the "server_name" directive default value is an empty
  2374. name "".
  2375. Thanks to Gena Makhomed.
  2376. *) Change: now the "server_name_in_redirect" directive default value is
  2377. "off".
  2378. *) Feature: the $geoip_dma_code, $geoip_area_code, and
  2379. $geoip_region_name variables.
  2380. Thanks to Christine McGonagle.
  2381. *) Bugfix: the "proxy_pass", "fastcgi_pass", "uwsgi_pass", and
  2382. "scgi_pass" directives were not inherited inside "limit_except"
  2383. blocks.
  2384. *) Bugfix: the "proxy_cache_min_uses", "fastcgi_cache_min_uses"
  2385. "uwsgi_cache_min_uses", and "scgi_cache_min_uses" directives did not
  2386. work; the bug had appeared in 0.8.46.
  2387. *) Bugfix: the "fastcgi_split_path_info" directive used incorrectly
  2388. captures, if only parts of an URI were captured.
  2389. Thanks to Yuriy Taraday and Frank Enderle.
  2390. *) Bugfix: the "rewrite" directive did not escape a ";" character during
  2391. copying from URI to query string.
  2392. Thanks to Daisuke Murase.
  2393. *) Bugfix: the ngx_http_image_filter_module closed a connection, if an
  2394. image was larger than "image_filter_buffer" size.
  2395. Changes with nginx 0.8.47 28 Jul 2010
  2396. *) Bugfix: $request_time variable had invalid values for subrequests.
  2397. *) Bugfix: errors intercepted by error_page could not be cached.
  2398. *) Bugfix: a cache manager process may got caught in an endless loop, if
  2399. max_size parameter was used; the bug had appeared in 0.8.46.
  2400. Changes with nginx 0.8.46 19 Jul 2010
  2401. *) Change: now the "proxy_no_cache", "fastcgi_no_cache",
  2402. "uwsgi_no_cache", and "scgi_no_cache" directives affect on a cached
  2403. response saving only.
  2404. *) Feature: the "proxy_cache_bypass", "fastcgi_cache_bypass",
  2405. "uwsgi_cache_bypass", and "scgi_cache_bypass" directives.
  2406. *) Bugfix: nginx did not free memory in cache keys zones if there was an
  2407. error during working with backend: the memory was freed only after
  2408. inactivity time or on memory low condition.
  2409. Changes with nginx 0.8.45 13 Jul 2010
  2410. *) Feature: ngx_http_xslt_filter improvements.
  2411. Thanks to Laurence Rowe.
  2412. *) Bugfix: SSI response might be truncated after include with
  2413. wait="yes"; the bug had appeared in 0.7.25.
  2414. Thanks to Maxim Dounin.
  2415. *) Bugfix: the "listen" directive did not support the "setfib=0"
  2416. parameter.
  2417. Changes with nginx 0.8.44 05 Jul 2010
  2418. *) Change: now nginx does not cache by default backend responses, if
  2419. they have a "Set-Cookie" header line.
  2420. *) Feature: the "listen" directive supports the "setfib" parameter.
  2421. Thanks to Andrew Filonov.
  2422. *) Bugfix: the "sub_filter" directive might change character case on
  2423. partial match.
  2424. *) Bugfix: compatibility with HP/UX.
  2425. *) Bugfix: compatibility with AIX xlC_r compiler.
  2426. *) Bugfix: nginx treated large SSLv2 packets as plain requests.
  2427. Thanks to Miroslaw Jaworski.
  2428. Changes with nginx 0.8.43 30 Jun 2010
  2429. *) Feature: large geo ranges base loading speed-up.
  2430. *) Bugfix: an error_page redirection to "location /zero {return 204;}"
  2431. without changing status code kept the error body; the bug had
  2432. appeared in 0.8.42.
  2433. *) Bugfix: nginx might close IPv6 listen socket during reconfiguration.
  2434. Thanks to Maxim Dounin.
  2435. *) Bugfix: the $uid_set variable may be used at any request processing
  2436. stage.
  2437. Changes with nginx 0.8.42 21 Jun 2010
  2438. *) Change: now nginx tests locations given by regular expressions, if
  2439. request was matched exactly by a location given by a prefix string.
  2440. The previous behavior has been introduced in 0.7.1.
  2441. *) Feature: the ngx_http_scgi_module.
  2442. Thanks to Manlio Perillo.
  2443. *) Feature: a text answer may be added to a "return" directive.
  2444. Changes with nginx 0.8.41 15 Jun 2010
  2445. *) Security: nginx/Windows worker might be terminated abnormally if a
  2446. requested file name has invalid UTF-8 encoding.
  2447. *) Change: now nginx allows to use spaces in a request line.
  2448. *) Bugfix: the "proxy_redirect" directive changed incorrectly a backend
  2449. "Refresh" response header line.
  2450. Thanks to Andrey Andreew and Max Sogin.
  2451. *) Bugfix: nginx did not support path without host name in "Destination"
  2452. request header line.
  2453. Changes with nginx 0.8.40 07 Jun 2010
  2454. *) Security: now nginx/Windows ignores default file stream name.
  2455. Thanks to Jose Antonio Vazquez Gonzalez.
  2456. *) Feature: the ngx_http_uwsgi_module.
  2457. Thanks to Roberto De Ioris.
  2458. *) Feature: a "fastcgi_param" directive with value starting with "HTTP_"
  2459. overrides a client request header line.
  2460. *) Bugfix: the "If-Modified-Since", "If-Range", etc. client request
  2461. header lines were passed to FastCGI-server while caching.
  2462. *) Bugfix: listen unix domain socket could not be changed during
  2463. reconfiguration.
  2464. Thanks to Maxim Dounin.
  2465. Changes with nginx 0.8.39 31 May 2010
  2466. *) Bugfix: an inherited "alias" directive worked incorrectly in
  2467. inclusive location.
  2468. *) Bugfix: in "alias" with variables and "try_files" directives
  2469. combination.
  2470. *) Bugfix: listen unix domain and IPv6 sockets did not inherit while
  2471. online upgrade.
  2472. Thanks to Maxim Dounin.
  2473. Changes with nginx 0.8.38 24 May 2010
  2474. *) Feature: the "proxy_no_cache" and "fastcgi_no_cache" directives.
  2475. *) Feature: now the "rewrite" directive does a redirect automatically if
  2476. the $scheme variable is used.
  2477. Thanks to Piotr Sikora.
  2478. *) Bugfix: now "limit_req" delay directive conforms to the described
  2479. algorithm.
  2480. Thanks to Maxim Dounin.
  2481. *) Bugfix: the $uid_got variable might not be used in the SSI and perl
  2482. modules.
  2483. Changes with nginx 0.8.37 17 May 2010
  2484. *) Feature: the ngx_http_split_clients_module.
  2485. *) Feature: the "map" directive supports keys more than 255 characters.
  2486. *) Bugfix: nginx ignored the "private" and "no-store" values in the
  2487. "Cache-Control" backend response header line.
  2488. *) Bugfix: a "stub" parameter of an "include" SSI directive was not
  2489. used, if empty response has 200 status code.
  2490. *) Bugfix: if a proxied or FastCGI request was internally redirected to
  2491. another proxied or FastCGI location, then a segmentation fault might
  2492. occur in a worker process; the bug had appeared in 0.8.33.
  2493. Thanks to Yichun Zhang.
  2494. *) Bugfix: IMAP connections may hang until they timed out while talking
  2495. to Zimbra server.
  2496. Thanks to Alan Batie.
  2497. Changes with nginx 0.8.36 22 Apr 2010
  2498. *) Bugfix: the ngx_http_dav_module handled incorrectly the DELETE, COPY,
  2499. and MOVE methods for symlinks.
  2500. *) Bugfix: values of the $query_string, $arg_..., etc. variables cached
  2501. in main request were used by the SSI module in subrequests.
  2502. *) Bugfix: a variable value was repeatedly encoded after each an "echo"
  2503. SSI-command output; the bug had appeared in 0.6.14.
  2504. *) Bugfix: a worker process hung if a FIFO file was requested.
  2505. Thanks to Vicente Aguilar and Maxim Dounin.
  2506. *) Bugfix: OpenSSL-1.0.0 compatibility on 64-bit Linux.
  2507. Thanks to Maxim Dounin.
  2508. *) Bugfix: nginx could not be built --without-http-cache; the bug had
  2509. appeared in 0.8.35.
  2510. Changes with nginx 0.8.35 01 Apr 2010
  2511. *) Change: now the charset filter runs before the SSI filter.
  2512. *) Feature: the "chunked_transfer_encoding" directive.
  2513. *) Bugfix: an "&" character was not escaped when it was copied in
  2514. arguments part in a rewrite rule.
  2515. *) Bugfix: nginx might be terminated abnormally while a signal
  2516. processing or if the directive "timer_resolution" was used on
  2517. platforms which do not support kqueue or eventport notification
  2518. methods.
  2519. Thanks to George Xie and Maxim Dounin.
  2520. *) Bugfix: if temporary files and permanent storage area resided at
  2521. different file systems, then permanent file modification times were
  2522. incorrect.
  2523. Thanks to Maxim Dounin.
  2524. *) Bugfix: ngx_http_memcached_module might issue the error message
  2525. "memcached sent invalid trailer".
  2526. Thanks to Maxim Dounin.
  2527. *) Bugfix: nginx could not built zlib-1.2.4 library using the library
  2528. sources.
  2529. Thanks to Maxim Dounin.
  2530. *) Bugfix: a segmentation fault occurred in a worker process, if there
  2531. was large stderr output before FastCGI response; the bug had appeared
  2532. in 0.8.34.
  2533. Thanks to Maxim Dounin.
  2534. Changes with nginx 0.8.34 03 Mar 2010
  2535. *) Bugfix: nginx did not support all ciphers and digests used in client
  2536. certificates.
  2537. Thanks to Innocenty Enikeew.
  2538. *) Bugfix: nginx cached incorrectly FastCGI responses if there was large
  2539. stderr output before response.
  2540. *) Bugfix: nginx did not support HTTPS referrers.
  2541. *) Bugfix: nginx/Windows might not find file if path in configuration
  2542. was given in other character case; the bug had appeared in 0.8.33.
  2543. *) Bugfix: the $date_local variable has an incorrect value, if the "%s"
  2544. format was used.
  2545. Thanks to Maxim Dounin.
  2546. *) Bugfix: if ssl_session_cache was not set or was set to "none", then
  2547. during client certificate verify the error "session id context
  2548. uninitialized" might occur; the bug had appeared in 0.7.1.
  2549. *) Bugfix: a geo range returned default value if the range included two
  2550. or more /16 networks and did not begin at /16 network boundary.
  2551. *) Bugfix: a block used in a "stub" parameter of an "include" SSI
  2552. directive was output with "text/plain" MIME type.
  2553. *) Bugfix: $r->sleep() did not work; the bug had appeared in 0.8.11.
  2554. Changes with nginx 0.8.33 01 Feb 2010
  2555. *) Security: now nginx/Windows ignores trailing spaces in URI.
  2556. Thanks to Dan Crowley, Core Security Technologies.
  2557. *) Security: now nginx/Windows ignores short files names.
  2558. Thanks to Dan Crowley, Core Security Technologies.
  2559. *) Change: now keepalive connections after POST requests are not
  2560. disabled for MSIE 7.0+.
  2561. Thanks to Adam Lounds.
  2562. *) Workaround: now keepalive connections are disabled for Safari.
  2563. Thanks to Joshua Sierles.
  2564. *) Bugfix: if a proxied or FastCGI request was internally redirected to
  2565. another proxied or FastCGI location, then $upstream_response_time
  2566. variable may have abnormally large value; the bug had appeared in
  2567. 0.8.7.
  2568. *) Bugfix: a segmentation fault might occur in a worker process, while
  2569. discarding a request body; the bug had appeared in 0.8.11.
  2570. Changes with nginx 0.8.32 11 Jan 2010
  2571. *) Bugfix: UTF-8 encoding usage in the ngx_http_autoindex_module.
  2572. Thanks to Maxim Dounin.
  2573. *) Bugfix: regular expression named captures worked for two names only.
  2574. Thanks to Maxim Dounin.
  2575. *) Bugfix: now the "localhost" name is used in the "Host" request header
  2576. line, if an unix domain socket is defined in the "auth_http"
  2577. directive.
  2578. Thanks to Maxim Dounin.
  2579. *) Bugfix: nginx did not support chunked transfer encoding for 201
  2580. responses.
  2581. Thanks to Julian Reich.
  2582. *) Bugfix: if the "expires modified" set date in the past, then a
  2583. negative number was set in the "Cache-Control" response header line.
  2584. Thanks to Alex Kapranoff.
  2585. Changes with nginx 0.8.31 23 Dec 2009
  2586. *) Feature: now the "error_page" directive may redirect the 301 and 302
  2587. responses.
  2588. *) Feature: the $geoip_city_continent_code, $geoip_latitude, and
  2589. $geoip_longitude variables.
  2590. Thanks to Arvind Sundararajan.
  2591. *) Feature: now the ngx_http_image_filter_module deletes always EXIF and
  2592. other application specific data if the data consume more than 5% of a
  2593. JPEG file.
  2594. *) Bugfix: nginx closed a connection if a cached response had an empty
  2595. body.
  2596. Thanks to Piotr Sikora.
  2597. *) Bugfix: nginx might not be built by gcc 4.x if the -O2 or higher
  2598. optimization option was used.
  2599. Thanks to Maxim Dounin and Denis F. Latypoff.
  2600. *) Bugfix: regular expressions in location were always tested in
  2601. case-sensitive mode; the bug had appeared in 0.8.25.
  2602. *) Bugfix: nginx cached a 304 response if there was the "If-None-Match"
  2603. header line in a proxied request.
  2604. Thanks to Tim Dettrick and David Kostal.
  2605. *) Bugfix: nginx/Windows tried to delete a temporary file twice if the
  2606. file should replace an already existent file.
  2607. Changes with nginx 0.8.30 15 Dec 2009
  2608. *) Change: now the default buffer size of the
  2609. "large_client_header_buffers" directive is 8K.
  2610. Thanks to Andrew Cholakian.
  2611. *) Feature: the conf/fastcgi.conf for simple FastCGI configurations.
  2612. *) Bugfix: nginx/Windows tried to rename a temporary file twice if the
  2613. file should replace an already existent file.
  2614. *) Bugfix: of "double free or corruption" error issued if host could not
  2615. be resolved; the bug had appeared in 0.8.22.
  2616. Thanks to Konstantin Svist.
  2617. *) Bugfix: in libatomic usage on some platforms.
  2618. Thanks to W-Mark Kubacki.
  2619. Changes with nginx 0.8.29 30 Nov 2009
  2620. *) Change: now the "009" status code is written to an access log for
  2621. proxied HTTP/0.9 responses.
  2622. *) Feature: the "addition_types", "charset_types", "gzip_types",
  2623. "ssi_types", "sub_filter_types", and "xslt_types" directives support
  2624. an "*" parameter.
  2625. *) Feature: GCC 4.1+ built-in atomic operations usage.
  2626. Thanks to W-Mark Kubacki.
  2627. *) Feature: the --with-libatomic[=DIR] option in the configure.
  2628. Thanks to W-Mark Kubacki.
  2629. *) Bugfix: listen unix domain socket had limited access rights.
  2630. *) Bugfix: cached HTTP/0.9 responses were handled incorrectly.
  2631. *) Bugfix: regular expression named captures given by "?P<...>" did not
  2632. work in a "server_name" directive.
  2633. Thanks to Maxim Dounin.
  2634. Changes with nginx 0.8.28 23 Nov 2009
  2635. *) Bugfix: nginx could not be built with the --without-pcre parameter;
  2636. the bug had appeared in 0.8.25.
  2637. Changes with nginx 0.8.27 17 Nov 2009
  2638. *) Bugfix: regular expressions did not work in nginx/Windows; the bug
  2639. had appeared in 0.8.25.
  2640. Changes with nginx 0.8.26 16 Nov 2009
  2641. *) Bugfix: in captures usage in "rewrite" directive; the bug had
  2642. appeared in 0.8.25.
  2643. *) Bugfix: nginx could not be built without the --with-debug option; the
  2644. bug had appeared in 0.8.25.
  2645. Changes with nginx 0.8.25 16 Nov 2009
  2646. *) Change: now no message is written in an error log if a variable is
  2647. not found by $r->variable() method.
  2648. *) Feature: the ngx_http_degradation_module.
  2649. *) Feature: regular expression named captures.
  2650. *) Feature: now URI part is not required a "proxy_pass" directive if
  2651. variables are used.
  2652. *) Feature: now the "msie_padding" directive works for Chrome too.
  2653. *) Bugfix: a segmentation fault occurred in a worker process on low
  2654. memory condition; the bug had appeared in 0.8.18.
  2655. *) Bugfix: nginx sent gzipped responses to clients those do not support
  2656. gzip, if "gzip_static on" and "gzip_vary off"; the bug had appeared
  2657. in 0.8.16.
  2658. Changes with nginx 0.8.24 11 Nov 2009
  2659. *) Bugfix: nginx always added "Content-Encoding: gzip" response header
  2660. line in 304 responses sent by ngx_http_gzip_static_module.
  2661. *) Bugfix: nginx could not be built without the --with-debug option; the
  2662. bug had appeared in 0.8.23.
  2663. *) Bugfix: the "unix:" parameter of the "set_real_ip_from" directive
  2664. inherited incorrectly from previous level.
  2665. *) Bugfix: in resolving empty name.
  2666. Changes with nginx 0.8.23 11 Nov 2009
  2667. *) Security: now SSL/TLS renegotiation is disabled.
  2668. Thanks to Maxim Dounin.
  2669. *) Bugfix: listen unix domain socket did not inherit while online
  2670. upgrade.
  2671. *) Bugfix: the "unix:" parameter of the "set_real_ip_from" directive did
  2672. not without yet another directive with any IP address.
  2673. *) Bugfix: segmentation fault and infinite looping in resolver.
  2674. *) Bugfix: in resolver.
  2675. Thanks to Artem Bokhan.
  2676. Changes with nginx 0.8.22 03 Nov 2009
  2677. *) Feature: the "proxy_bind", "fastcgi_bind", and "memcached_bind"
  2678. directives.
  2679. *) Feature: the "access" and the "deny" directives support IPv6.
  2680. *) Feature: the "set_real_ip_from" directive supports IPv6 addresses in
  2681. request headers.
  2682. *) Feature: the "unix:" parameter of the "set_real_ip_from" directive.
  2683. *) Bugfix: nginx did not delete unix domain socket after configuration
  2684. testing.
  2685. *) Bugfix: nginx deleted unix domain socket while online upgrade.
  2686. *) Bugfix: the "!-x" operator did not work.
  2687. Thanks to Maxim Dounin.
  2688. *) Bugfix: a segmentation fault might occur in a worker process, if
  2689. limit_rate was used in HTTPS server.
  2690. Thanks to Maxim Dounin.
  2691. *) Bugfix: a segmentation fault might occur in a worker process while
  2692. $limit_rate logging.
  2693. Thanks to Maxim Dounin.
  2694. *) Bugfix: a segmentation fault might occur in a worker process, if
  2695. there was no "listen" directive in "server" block; the bug had
  2696. appeared in 0.8.21.
  2697. Changes with nginx 0.8.21 26 Oct 2009
  2698. *) Feature: now the "-V" switch shows TLS SNI support.
  2699. *) Feature: the "listen" directive of the HTTP module supports unix
  2700. domain sockets.
  2701. Thanks to Hongli Lai.
  2702. *) Feature: the "default_server" parameter of the "listen" directive.
  2703. *) Feature: now a "default" parameter is not required to set listen
  2704. socket options.
  2705. *) Bugfix: nginx did not support dates in 2038 year on 32-bit platforms;
  2706. *) Bugfix: socket leak; the bug had appeared in 0.8.11.
  2707. Changes with nginx 0.8.20 14 Oct 2009
  2708. *) Change: now default SSL ciphers are "HIGH:!ADH:!MD5".
  2709. *) Bugfix: the ngx_http_autoindex_module did not show the trailing slash
  2710. in links to a directory; the bug had appeared in 0.7.15.
  2711. *) Bugfix: nginx did not close a log file set by the --error-log-path
  2712. configuration option; the bug had appeared in 0.7.53.
  2713. *) Bugfix: nginx did not treat a comma as separator in the
  2714. "Cache-Control" backend response header line.
  2715. *) Bugfix: nginx/Windows might not create temporary file, a cache file,
  2716. or "proxy/fastcgi_store"d file if a worker had no enough access
  2717. rights for top level directories.
  2718. *) Bugfix: the "Set-Cookie" and "P3P" FastCGI response header lines were
  2719. not hidden while caching if no "fastcgi_hide_header" directives were
  2720. used with any parameters.
  2721. *) Bugfix: nginx counted incorrectly disk cache size.
  2722. Changes with nginx 0.8.19 06 Oct 2009
  2723. *) Change: now SSLv2 protocol is disabled by default.
  2724. *) Change: now default SSL ciphers are "ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM".
  2725. *) Bugfix: a "limit_req" directive did not work; the bug had appeared in
  2726. 0.8.18.
  2727. Changes with nginx 0.8.18 06 Oct 2009
  2728. *) Feature: the "read_ahead" directive.
  2729. *) Feature: now several "perl_modules" directives may be used.
  2730. *) Feature: the "limit_req_log_level" and "limit_conn_log_level"
  2731. directives.
  2732. *) Bugfix: now "limit_req" directive conforms to the leaky bucket
  2733. algorithm.
  2734. Thanks to Maxim Dounin.
  2735. *) Bugfix: nginx did not work on Linux/sparc.
  2736. Thanks to Marcus Ramberg.
  2737. *) Bugfix: nginx sent '\0' in a "Location" response header line on MKCOL
  2738. request.
  2739. Thanks to Xie Zhenye.
  2740. *) Bugfix: zero status code was logged instead of 499 status code; the
  2741. bug had appeared in 0.8.11.
  2742. *) Bugfix: socket leak; the bug had appeared in 0.8.11.
  2743. Changes with nginx 0.8.17 28 Sep 2009
  2744. *) Security: now "/../" are disabled in "Destination" request header
  2745. line.
  2746. *) Change: now $host variable value is always low case.
  2747. *) Feature: the $ssl_session_id variable.
  2748. *) Bugfix: socket leak; the bug had appeared in 0.8.11.
  2749. Changes with nginx 0.8.16 22 Sep 2009
  2750. *) Feature: the "image_filter_transparency" directive.
  2751. *) Bugfix: "addition_types" directive was incorrectly named
  2752. "addtion_types".
  2753. *) Bugfix: resolver cache poisoning.
  2754. Thanks to Matthew Dempsky.
  2755. *) Bugfix: memory leak in resolver.
  2756. Thanks to Matthew Dempsky.
  2757. *) Bugfix: invalid request line in $request variable was written in
  2758. access_log only if error_log was set to "info" or "debug" level.
  2759. *) Bugfix: in PNG alpha-channel support in the
  2760. ngx_http_image_filter_module.
  2761. *) Bugfix: nginx always added "Vary: Accept-Encoding" response header
  2762. line, if both "gzip_static" and "gzip_vary" were on.
  2763. *) Bugfix: in UTF-8 encoding support by "try_files" directive in
  2764. nginx/Windows.
  2765. *) Bugfix: in "post_action" directive usage; the bug had appeared in
  2766. 0.8.11.
  2767. Thanks to Igor Artemiev.
  2768. Changes with nginx 0.8.15 14 Sep 2009
  2769. *) Security: a segmentation fault might occur in worker process while
  2770. specially crafted request handling.
  2771. Thanks to Chris Ries.
  2772. *) Bugfix: if names .domain.tld, .sub.domain.tld, and .domain-some.tld
  2773. were defined, then the name .sub.domain.tld was matched by
  2774. .domain.tld.
  2775. *) Bugfix: in transparency support in the ngx_http_image_filter_module.
  2776. *) Bugfix: in file AIO.
  2777. *) Bugfix: in X-Accel-Redirect usage; the bug had appeared in 0.8.11.
  2778. *) Bugfix: in embedded perl module; the bug had appeared in 0.8.11.
  2779. Changes with nginx 0.8.14 07 Sep 2009
  2780. *) Bugfix: an expired cached response might stick in the "UPDATING"
  2781. state.
  2782. *) Bugfix: a segmentation fault might occur in worker process, if
  2783. error_log was set to info or debug level.
  2784. Thanks to Sergey Bochenkov.
  2785. *) Bugfix: in embedded perl module; the bug had appeared in 0.8.11.
  2786. *) Bugfix: an "error_page" directive did not redirect a 413 error; the
  2787. bug had appeared in 0.6.10.
  2788. Changes with nginx 0.8.13 31 Aug 2009
  2789. *) Bugfix: in the "aio sendfile" directive; the bug had appeared in
  2790. 0.8.12.
  2791. *) Bugfix: nginx could not be built without the --with-file-aio option
  2792. on FreeBSD; the bug had appeared in 0.8.12.
  2793. Changes with nginx 0.8.12 31 Aug 2009
  2794. *) Feature: the "sendfile" parameter in the "aio" directive on FreeBSD.
  2795. *) Bugfix: in try_files; the bug had appeared in 0.8.11.
  2796. *) Bugfix: in memcached; the bug had appeared in 0.8.11.
  2797. Changes with nginx 0.8.11 28 Aug 2009
  2798. *) Change: now directive "gzip_disable msie6" does not disable gzipping
  2799. for MSIE 6.0 SV1.
  2800. *) Feature: file AIO support on FreeBSD and Linux.
  2801. *) Feature: the "directio_alignment" directive.
  2802. Changes with nginx 0.8.10 24 Aug 2009
  2803. *) Bugfix: memory leaks if GeoIP City database was used.
  2804. *) Bugfix: in copying temporary files to permanent storage area; the bug
  2805. had appeared in 0.8.9.
  2806. Changes with nginx 0.8.9 17 Aug 2009
  2807. *) Feature: now the start cache loader runs in a separate process; this
  2808. should improve large caches handling.
  2809. *) Feature: now temporary files and permanent storage area may reside at
  2810. different file systems.
  2811. Changes with nginx 0.8.8 10 Aug 2009
  2812. *) Bugfix: in handling FastCGI headers split in records.
  2813. *) Bugfix: a segmentation fault occurred in worker process, if a request
  2814. was handled in two proxied or FastCGIed locations and a caching was
  2815. enabled in the first location; the bug had appeared in 0.8.7.
  2816. Changes with nginx 0.8.7 27 Jul 2009
  2817. *) Change: minimum supported OpenSSL version is 0.9.7.
  2818. *) Change: the "ask" parameter of the "ssl_verify_client" directive was
  2819. changed to the "optional" parameter and now it checks a client
  2820. certificate if it was offered.
  2821. Thanks to Brice Figureau.
  2822. *) Feature: the $ssl_client_verify variable.
  2823. Thanks to Brice Figureau.
  2824. *) Feature: the "ssl_crl" directive.
  2825. Thanks to Brice Figureau.
  2826. *) Feature: the "proxy" parameter of the "geo" directive.
  2827. *) Feature: the "image_filter" directive supports variables for setting
  2828. size.
  2829. *) Bugfix: the $ssl_client_cert variable usage corrupted memory; the bug
  2830. had appeared in 0.7.7.
  2831. Thanks to Sergey Zhuravlev.
  2832. *) Bugfix: "proxy_pass_header" and "fastcgi_pass_header" directives did
  2833. not pass to a client the "X-Accel-Redirect", "X-Accel-Limit-Rate",
  2834. "X-Accel-Buffering", and "X-Accel-Charset" lines from backend
  2835. response header.
  2836. Thanks to Maxim Dounin.
  2837. *) Bugfix: in handling "Last-Modified" and "Accept-Ranges" backend
  2838. response header lines; the bug had appeared in 0.7.44.
  2839. Thanks to Maxim Dounin.
  2840. *) Bugfix: the "[alert] zero size buf" error if subrequest returns an
  2841. empty response; the bug had appeared in 0.8.5.
  2842. Changes with nginx 0.8.6 20 Jul 2009
  2843. *) Feature: the ngx_http_geoip_module.
  2844. *) Bugfix: XSLT filter may fail with message "not well formed XML
  2845. document" for valid XML document.
  2846. Thanks to Kuramoto Eiji.
  2847. *) Bugfix: now in MacOSX, Cygwin, and nginx/Windows locations given by a
  2848. regular expression are always tested in case insensitive mode.
  2849. *) Bugfix: now nginx/Windows ignores trailing dots in URI.
  2850. Thanks to Hugo Leisink.
  2851. *) Bugfix: name of file specified in --conf-path was not honored during
  2852. installation; the bug had appeared in 0.6.6.
  2853. Thanks to Maxim Dounin.
  2854. Changes with nginx 0.8.5 13 Jul 2009
  2855. *) Bugfix: now nginx allows underscores in a request method.
  2856. *) Bugfix: a 500 error code was returned for invalid login/password
  2857. while HTTP Basic authentication on Windows.
  2858. *) Bugfix: ngx_http_perl_module responses did not work in subrequests.
  2859. *) Bugfix: in ngx_http_limit_req_module.
  2860. Thanks to Maxim Dounin.
  2861. Changes with nginx 0.8.4 22 Jun 2009
  2862. *) Bugfix: nginx could not be built --without-http-cache; the bug had
  2863. appeared in 0.8.3.
  2864. Changes with nginx 0.8.3 19 Jun 2009
  2865. *) Feature: the $upstream_cache_status variable.
  2866. *) Bugfix: nginx could not be built on MacOSX 10.6.
  2867. *) Bugfix: nginx could not be built --without-http-cache; the bug had
  2868. appeared in 0.8.2.
  2869. *) Bugfix: a segmentation fault occurred in worker process, if a backend
  2870. 401 error was intercepted and the backend did not set the
  2871. "WWW-Authenticate" response header line.
  2872. Thanks to Eugene Mychlo.
  2873. Changes with nginx 0.8.2 15 Jun 2009
  2874. *) Bugfix: in open_file_cache and proxy/fastcgi cache interaction on
  2875. start up.
  2876. *) Bugfix: open_file_cache might cache open file descriptors too long;
  2877. the bug had appeared in 0.7.4.
  2878. Changes with nginx 0.8.1 08 Jun 2009
  2879. *) Feature: the "updating" parameter in "proxy_cache_use_stale" and
  2880. "fastcgi_cache_use_stale" directives.
  2881. *) Bugfix: the "If-Modified-Since", "If-Range", etc. client request
  2882. header lines were passed to backend while caching if no
  2883. "proxy_set_header" directive was used with any parameters.
  2884. *) Bugfix: the "Set-Cookie" and "P3P" response header lines were not
  2885. hidden while caching if no "proxy_hide_header/fastcgi_hide_header"
  2886. directives were used with any parameters.
  2887. *) Bugfix: the ngx_http_image_filter_module did not support GIF87a
  2888. format.
  2889. Thanks to Denis Ilyinyh.
  2890. *) Bugfix: nginx could not be built modules on Solaris 10 and early; the
  2891. bug had appeared in 0.7.56.
  2892. Changes with nginx 0.8.0 02 Jun 2009
  2893. *) Feature: the "keepalive_requests" directive.
  2894. *) Feature: the "limit_rate_after" directive.
  2895. Thanks to Ivan Debnar.
  2896. *) Bugfix: XLST filter did not work in subrequests.
  2897. *) Bugfix: in relative paths handling in nginx/Windows.
  2898. *) Bugfix: in proxy_store, fastcgi_store, proxy_cache, and fastcgi_cache
  2899. in nginx/Windows.
  2900. *) Bugfix: in memory allocation error handling.
  2901. Thanks to Maxim Dounin and Kirill A. Korinskiy.
  2902. Changes with nginx 0.7.59 25 May 2009
  2903. *) Feature: the "proxy_cache_methods" and "fastcgi_cache_methods"
  2904. directives.
  2905. *) Bugfix: socket leak; the bug had appeared in 0.7.25.
  2906. Thanks to Maxim Dounin.
  2907. *) Bugfix: a segmentation fault occurred in worker process, if a request
  2908. had no body and the $request_body variable was used;
  2909. the bug had appeared in 0.7.58.
  2910. *) Bugfix: the SSL modules might not built on Solaris and Linux;
  2911. the bug had appeared in 0.7.56.
  2912. *) Bugfix: ngx_http_xslt_filter_module responses were not handled by
  2913. SSI, charset, and gzip filters.
  2914. *) Bugfix: a "charset" directive did not set a charset to
  2915. ngx_http_gzip_static_module responses.
  2916. Changes with nginx 0.7.58 18 May 2009
  2917. *) Feature: a "listen" directive of the mail proxy module supports IPv6.
  2918. *) Feature: the "image_filter_jpeg_quality" directive.
  2919. *) Feature: the "client_body_in_single_buffer" directive.
  2920. *) Feature: the $request_body variable.
  2921. *) Bugfix: in ngx_http_autoindex_module in file name links having a ":"
  2922. symbol in the name.
  2923. *) Bugfix: "make upgrade" procedure did not work; the bug had appeared
  2924. in 0.7.53.
  2925. Thanks to Denis F. Latypoff.
  2926. Changes with nginx 0.7.57 12 May 2009
  2927. *) Bugfix: a floating-point fault occurred in worker process, if the
  2928. ngx_http_image_filter_module errors were redirected to named
  2929. location; the bug had appeared in 0.7.56.
  2930. Changes with nginx 0.7.56 11 May 2009
  2931. *) Feature: nginx/Windows supports IPv6 in a "listen" directive of the
  2932. HTTP module.
  2933. *) Bugfix: in ngx_http_image_filter_module.
  2934. Changes with nginx 0.7.55 06 May 2009
  2935. *) Bugfix: the http_XXX parameters in "proxy_cache_use_stale" and
  2936. "fastcgi_cache_use_stale" directives did not work.
  2937. *) Bugfix: fastcgi cache did not cache header only responses.
  2938. *) Bugfix: of "select() failed (9: Bad file descriptor)" error in
  2939. nginx/Unix and "select() failed (10038: ...)" error in nginx/Windows.
  2940. *) Bugfix: a segmentation fault might occur in worker process, if an
  2941. "debug_connection" directive was used; the bug had appeared in
  2942. 0.7.54.
  2943. *) Bugfix: fix ngx_http_image_filter_module building errors.
  2944. *) Bugfix: the files bigger than 2G could not be transferred using
  2945. $r->sendfile.
  2946. Thanks to Maxim Dounin.
  2947. Changes with nginx 0.7.54 01 May 2009
  2948. *) Feature: the ngx_http_image_filter_module.
  2949. *) Feature: the "proxy_ignore_headers" and "fastcgi_ignore_headers"
  2950. directives.
  2951. *) Bugfix: a segmentation fault might occur in worker process, if an
  2952. "open_file_cache_errors off" directive was used; the bug had appeared
  2953. in 0.7.53.
  2954. *) Bugfix: the "port_in_redirect off" directive did not work; the bug
  2955. had appeared in 0.7.39.
  2956. *) Bugfix: improve handling of "select" method errors.
  2957. *) Bugfix: of "select() failed (10022: ...)" error in nginx/Windows.
  2958. *) Bugfix: in error text descriptions in nginx/Windows; the bug had
  2959. appeared in 0.7.53.
  2960. Changes with nginx 0.7.53 27 Apr 2009
  2961. *) Change: now a log set by --error-log-path is created from the very
  2962. start-up.
  2963. *) Feature: now the start up errors and warnings are outputted to an
  2964. error_log and stderr.
  2965. *) Feature: the empty --prefix= configure parameter forces nginx to use
  2966. a directory where it was run as prefix.
  2967. *) Feature: the -p switch.
  2968. *) Feature: the -s switch on Unix platforms.
  2969. *) Feature: the -? and -h switches.
  2970. Thanks to Jerome Loyet.
  2971. *) Feature: now switches may be set in condensed form.
  2972. *) Bugfix: nginx/Windows did not work if configuration file was given by
  2973. the -c switch.
  2974. *) Bugfix: temporary files might be not removed if the "proxy_store",
  2975. "fastcgi_store", "proxy_cache", or "fastcgi_cache" were used.
  2976. Thanks to Maxim Dounin.
  2977. *) Bugfix: an incorrect value was passed to mail proxy authentication
  2978. server in "Auth-Method" header line; the bug had appeared
  2979. in 0.7.34.
  2980. Thanks to Simon Lecaille.
  2981. *) Bugfix: system error text descriptions were not logged on Linux;
  2982. the bug had appeared in 0.7.45.
  2983. *) Bugfix: the "fastcgi_cache_min_uses" directive did not work.
  2984. Thanks to Andrew Vorobyoff.
  2985. Changes with nginx 0.7.52 20 Apr 2009
  2986. *) Feature: the first native Windows binary release.
  2987. *) Bugfix: in processing HEAD method while caching.
  2988. *) Bugfix: in processing the "If-Modified-Since", "If-Range", etc.
  2989. client request header lines while caching.
  2990. *) Bugfix: now the "Set-Cookie" and "P3P" header lines are hidden in
  2991. cacheable responses.
  2992. *) Bugfix: if nginx was built with the ngx_http_perl_module and with a
  2993. perl which supports threads, then during a master process exit the
  2994. message "panic: MUTEX_LOCK" might be issued.
  2995. *) Bugfix: nginx could not be built --without-http-cache; the bug had
  2996. appeared in 0.7.48.
  2997. *) Bugfix: nginx could not be built on platforms different from i386,
  2998. amd64, sparc, and ppc; the bug had appeared in 0.7.42.
  2999. Changes with nginx 0.7.51 12 Apr 2009
  3000. *) Feature: the "try_files" directive supports a response code in the
  3001. fallback parameter.
  3002. *) Feature: now any response code can be used in the "return" directive.
  3003. *) Bugfix: the "error_page" directive made an external redirect without
  3004. query string; the bug had appeared in 0.7.44.
  3005. *) Bugfix: if servers listened on several defined explicitly addresses,
  3006. then virtual servers might not work; the bug had appeared in 0.7.39.
  3007. Changes with nginx 0.7.50 06 Apr 2009
  3008. *) Bugfix: the $arg_... variables did not work; the bug had appeared in
  3009. 0.7.49.
  3010. Changes with nginx 0.7.49 06 Apr 2009
  3011. *) Bugfix: a segmentation fault might occur in worker process, if the
  3012. $arg_... variables were used; the bug had appeared in 0.7.48.
  3013. Changes with nginx 0.7.48 06 Apr 2009
  3014. *) Feature: the "proxy_cache_key" directive.
  3015. *) Bugfix: now nginx takes into account the "X-Accel-Expires",
  3016. "Expires", and "Cache-Control" header lines in a backend response.
  3017. *) Bugfix: now nginx caches responses for the GET requests only.
  3018. *) Bugfix: the "fastcgi_cache_key" directive was not inherited.
  3019. *) Bugfix: the $arg_... variables did not work with SSI subrequests.
  3020. Thanks to Maxim Dounin.
  3021. *) Bugfix: nginx could not be built with uclibc library.
  3022. Thanks to Timothy Redaelli.
  3023. *) Bugfix: nginx could not be built on OpenBSD; the bug had
  3024. appeared in 0.7.46.
  3025. Changes with nginx 0.7.47 01 Apr 2009
  3026. *) Bugfix: nginx could not be built on FreeBSD 6 and early versions; the
  3027. bug had appeared in 0.7.46.
  3028. *) Bugfix: nginx could not be built on MacOSX; the bug had
  3029. appeared in 0.7.46.
  3030. *) Bugfix: if the "max_size" parameter was set, then the cache manager
  3031. might purge a whole cache; the bug had appeared in 0.7.46.
  3032. *) Change: a segmentation fault might occur in worker process, if the
  3033. "proxy_cache"/"fastcgi_cache" and the "proxy_cache_valid"/
  3034. "fastcgi_cache_valid" were set on different levels; the bug had
  3035. appeared in 0.7.46.
  3036. *) Bugfix: a segmentation fault might occur in worker process, if a
  3037. request was redirected to a proxied or FastCGI server via error_page
  3038. or try_files; the bug had appeared in 0.7.44.
  3039. Changes with nginx 0.7.46 30 Mar 2009
  3040. *) Bugfix: the previous release tarball was incorrect.
  3041. Changes with nginx 0.7.45 30 Mar 2009
  3042. *) Change: now the "proxy_cache" and the "proxy_cache_valid" directives
  3043. can be set on different levels.
  3044. *) Change: the "clean_time" parameter of the "proxy_cache_path"
  3045. directive is canceled.
  3046. *) Feature: the "max_size" parameter of the "proxy_cache_path"
  3047. directive.
  3048. *) Feature: the ngx_http_fastcgi_module preliminary cache support.
  3049. *) Feature: now on shared memory allocation errors directive and zone
  3050. names are logged.
  3051. *) Bugfix: the directive "add_header last-modified ''" did not delete a
  3052. "Last-Modified" response header line; the bug had appeared in 0.7.44.
  3053. *) Bugfix: a relative path in the "auth_basic_user_file" directive given
  3054. without variables did not work; the bug had appeared in 0.7.44.
  3055. Thanks to Jerome Loyet.
  3056. *) Bugfix: in an "alias" directive given using variables without
  3057. references to captures of regular expressions; the bug had appeared
  3058. in 0.7.42.
  3059. Changes with nginx 0.7.44 23 Mar 2009
  3060. *) Feature: the ngx_http_proxy_module preliminary cache support.
  3061. *) Feature: the --with-pcre option in the configure.
  3062. *) Feature: the "try_files" directive is now allowed on the server block
  3063. level.
  3064. *) Bugfix: the "try_files" directive handled incorrectly a query string
  3065. in a fallback parameter.
  3066. *) Bugfix: the "try_files" directive might test incorrectly directories.
  3067. *) Bugfix: if there was a single server for given address:port pair,
  3068. then captures in regular expressions in a "server_name" directive did
  3069. not work.
  3070. Changes with nginx 0.7.43 18 Mar 2009
  3071. *) Bugfix: a request was handled incorrectly, if a "root" directive used
  3072. variables; the bug had appeared in 0.7.42.
  3073. *) Bugfix: if a server listened on wildcard address, then the
  3074. $server_addr variable value was "0.0.0.0"; the bug had appeared in
  3075. 0.7.36.
  3076. Changes with nginx 0.7.42 16 Mar 2009
  3077. *) Change: now the "Invalid argument" error returned by
  3078. setsockopt(TCP_NODELAY) on Solaris, is ignored.
  3079. *) Change: now if a file specified in a "auth_basic_user_file" directive
  3080. is absent, then the 403 error is returned instead of the 500 one.
  3081. *) Feature: the "auth_basic_user_file" directive supports variables.
  3082. Thanks to Kirill A. Korinskiy.
  3083. *) Feature: the "listen" directive supports the "ipv6only" parameter.
  3084. Thanks to Zhang Hua.
  3085. *) Bugfix: in an "alias" directive with references to captures of
  3086. regular expressions; the bug had appeared in 0.7.40.
  3087. *) Bugfix: compatibility with Tru64 UNIX.
  3088. Thanks to Dustin Marquess.
  3089. *) Bugfix: nginx could not be built without PCRE library; the bug had
  3090. appeared in 0.7.41.
  3091. Changes with nginx 0.7.41 11 Mar 2009
  3092. *) Bugfix: a segmentation fault might occur in worker process, if a
  3093. "server_name" or a "location" directives had captures in regular
  3094. expressions; the issue had appeared in 0.7.40.
  3095. Thanks to Vladimir Sopot.
  3096. Changes with nginx 0.7.40 09 Mar 2009
  3097. *) Feature: the "location" directive supports captures in regular
  3098. expressions.
  3099. *) Feature: an "alias" directive with capture references may be used
  3100. inside a location given by a regular expression with captures.
  3101. *) Feature: the "server_name" directive supports captures in regular
  3102. expressions.
  3103. *) Workaround: the ngx_http_autoindex_module did not show the trailing
  3104. slash in directories on XFS filesystem; the issue had appeared in
  3105. 0.7.15.
  3106. Thanks to Dmitry Kuzmenko.
  3107. Changes with nginx 0.7.39 02 Mar 2009
  3108. *) Bugfix: large response with SSI might hang, if gzipping was enabled;
  3109. the bug had appeared in 0.7.28.
  3110. Thanks to Artem Bokhan.
  3111. *) Bugfix: a segmentation fault might occur in worker process, if short
  3112. static variants are used in a "try_files" directive.
  3113. Changes with nginx 0.7.38 23 Feb 2009
  3114. *) Feature: authentication failures logging.
  3115. *) Bugfix: name/password in auth_basic_user_file were ignored after odd
  3116. number of empty lines.
  3117. Thanks to Alexander Zagrebin.
  3118. *) Bugfix: a segmentation fault occurred in a master process, if long
  3119. path was used in unix domain socket; the bug had appeared in 0.7.36.
  3120. Changes with nginx 0.7.37 21 Feb 2009
  3121. *) Bugfix: directives using upstreams did not work; the bug had appeared
  3122. in 0.7.36.
  3123. Changes with nginx 0.7.36 21 Feb 2009
  3124. *) Feature: a preliminary IPv6 support; the "listen" directive of the
  3125. HTTP module supports IPv6.
  3126. *) Bugfix: the $ancient_browser variable did not work for browsers
  3127. preset by a "modern_browser" directives.
  3128. Changes with nginx 0.7.35 16 Feb 2009
  3129. *) Bugfix: a "ssl_engine" directive did not use a SSL-accelerator for
  3130. asymmetric ciphers.
  3131. Thanks to Marcin Gozdalik.
  3132. *) Bugfix: a "try_files" directive set MIME type depending on an
  3133. original request extension.
  3134. *) Bugfix: "*domain.tld" names were handled incorrectly in
  3135. "server_name", "valid_referers", and "map" directives, if
  3136. ".domain.tld" and ".subdomain.domain.tld" wildcards were used;
  3137. the bug had appeared in 0.7.9.
  3138. Changes with nginx 0.7.34 10 Feb 2009
  3139. *) Feature: the "off" parameter of the "if_modified_since" directive.
  3140. *) Feature: now nginx sends an HELO/EHLO command after a XCLIENT
  3141. command.
  3142. Thanks to Maxim Dounin.
  3143. *) Feature: Microsoft specific "AUTH LOGIN with User Name" mode support
  3144. in mail proxy server.
  3145. Thanks to Maxim Dounin.
  3146. *) Bugfix: in a redirect rewrite directive original arguments were
  3147. concatenated with new arguments by a "?" rather than an "&";
  3148. the bug had appeared in 0.1.18.
  3149. Thanks to Maxim Dounin.
  3150. *) Bugfix: nginx could not be built on AIX.
  3151. Changes with nginx 0.7.33 02 Feb 2009
  3152. *) Bugfix: a double response might be returned if the epoll or rtsig
  3153. methods are used and a redirect was returned to a request with body.
  3154. Thanks to Eden Li.
  3155. *) Bugfix: the $sent_http_location variable was empty for some redirects
  3156. types.
  3157. *) Bugfix: a segmentation fault might occur in worker process if
  3158. "resolver" directive was used in SMTP proxy.
  3159. Changes with nginx 0.7.32 26 Jan 2009
  3160. *) Feature: now a directory existence testing can be set explicitly in
  3161. the "try_files" directive.
  3162. *) Bugfix: fastcgi_store stored files not always.
  3163. *) Bugfix: in geo ranges.
  3164. *) Bugfix: in shared memory allocations if nginx was built without
  3165. debugging.
  3166. Thanks to Andrey Kvasov.
  3167. Changes with nginx 0.7.31 19 Jan 2009
  3168. *) Change: now the "try_files" directive tests files only and ignores
  3169. directories.
  3170. *) Feature: the "fastcgi_split_path_info" directive.
  3171. *) Bugfixes in an "Expect" request header line support.
  3172. *) Bugfixes in geo ranges.
  3173. *) Bugfix: in a miss case ngx_http_memcached_module returned the "END"
  3174. line as response body instead of default 404 page body; the bug had
  3175. appeared in 0.7.18.
  3176. Thanks to Maxim Dounin.
  3177. *) Bugfix: while SMTP proxying nginx issued message "250 2.0.0 OK"
  3178. instead of "235 2.0.0 OK"; the bug had appeared in 0.7.22.
  3179. Thanks to Maxim Dounin.
  3180. Changes with nginx 0.7.30 24 Dec 2008
  3181. *) Bugfix: a segmentation fault occurred in worker process, if variables
  3182. were used in the "fastcgi_pass" or "proxy_pass" directives and host
  3183. name must be resolved; the bug had appeared in 0.7.29.
  3184. Changes with nginx 0.7.29 24 Dec 2008
  3185. *) Bugfix: the "fastcgi_pass" and "proxy_pass" directives did not
  3186. support variables if unix domain sockets were used.
  3187. *) Bugfixes in subrequest processing; the bugs had appeared in 0.7.25.
  3188. *) Bugfix: a "100 Continue" response was issued for HTTP/1.0 requests;
  3189. Thanks to Maxim Dounin.
  3190. *) Bugfix: in memory allocation in the ngx_http_gzip_filter_module on
  3191. Cygwin.
  3192. Changes with nginx 0.7.28 22 Dec 2008
  3193. *) Change: in memory allocation in the ngx_http_gzip_filter_module.
  3194. *) Change: the default "gzip_buffers" directive values have been changed
  3195. to 32 4k or 16 8k from 4 4k/8k.
  3196. Changes with nginx 0.7.27 15 Dec 2008
  3197. *) Feature: the "try_files" directive.
  3198. *) Feature: variables support in the "fastcgi_pass" directive.
  3199. *) Feature: now the $geo variable may get an address from a variable.
  3200. Thanks to Andrei Nigmatulin.
  3201. *) Feature: now a location's modifier may be used without space before
  3202. name.
  3203. *) Feature: the $upstream_response_length variable.
  3204. *) Bugfix: now a "add_header" directive does not add an empty value.
  3205. *) Bugfix: if zero length static file was requested, then nginx just
  3206. closed connection; the bug had appeared in 0.7.25.
  3207. *) Bugfix: a MOVE method could not move file in non-existent directory.
  3208. *) Bugfix: a segmentation fault occurred in worker process, if no one
  3209. named location was defined in server, but some one was used in an
  3210. error_page directive.
  3211. Thanks to Sergey Bochenkov.
  3212. Changes with nginx 0.7.26 08 Dec 2008
  3213. *) Bugfix: in subrequest processing; the bug had appeared in 0.7.25.
  3214. Changes with nginx 0.7.25 08 Dec 2008
  3215. *) Change: in subrequest processing.
  3216. *) Change: now POSTs without "Content-Length" header line are allowed.
  3217. *) Bugfix: now the "limit_req" and "limit_conn" directives log a
  3218. prohibition reason.
  3219. *) Bugfix: in the "delete" parameter of the "geo" directive.
  3220. Changes with nginx 0.7.24 01 Dec 2008
  3221. *) Feature: the "if_modified_since" directive.
  3222. *) Bugfix: nginx did not process a FastCGI server response, if the
  3223. server send too many messages to stderr before response.
  3224. *) Bugfix: the "$cookie_..." variables did not work in the SSI and the
  3225. perl module.
  3226. Changes with nginx 0.7.23 27 Nov 2008
  3227. *) Feature: the "delete" and "ranges" parameters in the "geo" directive.
  3228. *) Feature: speeding up loading of geo base with large number of values.
  3229. *) Feature: decrease of memory required for geo base load.
  3230. Changes with nginx 0.7.22 20 Nov 2008
  3231. *) Feature: the "none" parameter in the "smtp_auth" directive.
  3232. Thanks to Maxim Dounin.
  3233. *) Feature: the "$cookie_..." variables.
  3234. *) Bugfix: the "directio" directive did not work in XFS filesystem.
  3235. *) Bugfix: the resolver did not understand big DNS responses.
  3236. Thanks to Zyb.
  3237. Changes with nginx 0.7.21 11 Nov 2008
  3238. *) Changes in the ngx_http_limit_req_module.
  3239. *) Feature: the EXSLT support in the ngx_http_xslt_module.
  3240. Thanks to Denis F. Latypoff.
  3241. *) Workaround: compatibility with glibc 2.3.
  3242. Thanks to Eric Benson and Maxim Dounin.
  3243. *) Bugfix: nginx could not run on MacOSX 10.4 and earlier; the bug had
  3244. appeared in 0.7.6.
  3245. Changes with nginx 0.7.20 10 Nov 2008
  3246. *) Changes in the ngx_http_gzip_filter_module.
  3247. *) Feature: the ngx_http_limit_req_module.
  3248. *) Bugfix: worker processes might exit on a SIGBUS signal on sparc and
  3249. ppc platforms; the bug had appeared in 0.7.3.
  3250. Thanks to Maxim Dounin.
  3251. *) Bugfix: the "proxy_pass http://host/some:uri" directives did not
  3252. work; the bug had appeared in 0.7.12.
  3253. *) Bugfix: in HTTPS mode requests might fail with the "bad write retry"
  3254. error.
  3255. *) Bugfix: the ngx_http_secure_link_module did not work inside
  3256. locations, whose names are less than 3 characters.
  3257. *) Bugfix: $server_addr variable might have no value.
  3258. Changes with nginx 0.7.19 13 Oct 2008
  3259. *) Bugfix: version number update.
  3260. Changes with nginx 0.7.18 13 Oct 2008
  3261. *) Change: the "underscores_in_headers" directive; now nginx does not
  3262. allows underscores in a client request header line names.
  3263. *) Feature: the ngx_http_secure_link_module.
  3264. *) Feature: the "real_ip_header" directive supports any header.
  3265. *) Feature: the "log_subrequest" directive.
  3266. *) Feature: the $realpath_root variable.
  3267. *) Feature: the "http_502" and "http_504" parameters of the
  3268. "proxy_next_upstream" directive.
  3269. *) Bugfix: the "http_503" parameter of the "proxy_next_upstream" or
  3270. "fastcgi_next_upstream" directives did not work.
  3271. *) Bugfix: nginx might send a "Transfer-Encoding: chunked" header line
  3272. for HEAD requests.
  3273. *) Bugfix: now accept threshold depends on worker_connections.
  3274. Changes with nginx 0.7.17 15 Sep 2008
  3275. *) Feature: now the "directio" directive works on Linux.
  3276. *) Feature: the $pid variable.
  3277. *) Bugfix: the "directio" optimization that had appeared in 0.7.15 did
  3278. not work with open_file_cache.
  3279. *) Bugfix: the "access_log" with variables did not work on Linux; the
  3280. bug had appeared in 0.7.7.
  3281. *) Bugfix: the ngx_http_charset_module did not understand quoted charset
  3282. name received from backend.
  3283. Changes with nginx 0.7.16 08 Sep 2008
  3284. *) Bugfix: nginx could not be built on 64-bit platforms; the bug had
  3285. appeared in 0.7.15.
  3286. Changes with nginx 0.7.15 08 Sep 2008
  3287. *) Feature: the ngx_http_random_index_module.
  3288. *) Feature: the "directio" directive has been optimized for file
  3289. requests starting from arbitrary position.
  3290. *) Feature: the "directio" directive turns off sendfile if it is
  3291. necessary.
  3292. *) Feature: now nginx allows underscores in a client request header line
  3293. names.
  3294. Changes with nginx 0.7.14 01 Sep 2008
  3295. *) Change: now the ssl_certificate and ssl_certificate_key directives
  3296. have no default values.
  3297. *) Feature: the "listen" directive supports the "ssl" parameter.
  3298. *) Feature: now nginx takes into account a time zone change while
  3299. reconfiguration on FreeBSD and Linux.
  3300. *) Bugfix: the "listen" directive parameters such as "backlog",
  3301. "rcvbuf", etc. were not set, if a default server was not the first
  3302. one.
  3303. *) Bugfix: if URI part captured by a "rewrite" directive was used as a
  3304. query string, then the query string was not escaped.
  3305. *) Bugfix: configuration file validity test improvements.
  3306. Changes with nginx 0.7.13 26 Aug 2008
  3307. *) Bugfix: nginx could not be built on Linux and Solaris; the bug had
  3308. appeared in 0.7.12.
  3309. Changes with nginx 0.7.12 26 Aug 2008
  3310. *) Feature: the "server_name" directive supports empty name "".
  3311. *) Feature: the "gzip_disable" directive supports special "msie6" mask.
  3312. *) Bugfix: if the "max_fails=0" parameter was used in upstream with
  3313. several servers, then a worker process exited on a SIGFPE signal.
  3314. Thanks to Maxim Dounin.
  3315. *) Bugfix: a request body was dropped while redirection via an
  3316. "error_page" directive.
  3317. *) Bugfix: a full response was returned for request method HEAD while
  3318. redirection via an "error_page" directive.
  3319. *) Bugfix: the $r->header_in() method did not return value of the
  3320. "Host", "User-Agent", and "Connection" request header lines; the bug
  3321. had appeared in 0.7.0.
  3322. Changes with nginx 0.7.11 18 Aug 2008
  3323. *) Change: now ngx_http_charset_module does not work by default with
  3324. text/css MIME type.
  3325. *) Feature: now nginx returns the 405 status code for POST method
  3326. requesting a static file only if the file exists.
  3327. *) Feature: the "proxy_ssl_session_reuse" directive.
  3328. *) Bugfix: a "proxy_pass" directive without URI part might use original
  3329. request after the "X-Accel-Redirect" redirection was used.
  3330. *) Bugfix: if a directory has search only rights and the first index
  3331. file was absent, then nginx returned the 500 status code.
  3332. *) Bugfix: in inclusive locations; the bugs had appeared in 0.7.1.
  3333. Changes with nginx 0.7.10 13 Aug 2008
  3334. *) Bugfix: in the "addition_types", "charset_types", "gzip_types",
  3335. "ssi_types", "sub_filter_types", and "xslt_types" directives; the
  3336. bugs had appeared in 0.7.9.
  3337. *) Bugfix: of recursive error_page for 500 status code.
  3338. *) Bugfix: now the ngx_http_realip_module sets address not for whole
  3339. keepalive connection, but for each request passed via the connection.
  3340. Changes with nginx 0.7.9 12 Aug 2008
  3341. *) Change: now ngx_http_charset_module works by default with following
  3342. MIME types: text/html, text/css, text/xml, text/plain,
  3343. text/vnd.wap.wml, application/x-javascript, and application/rss+xml.
  3344. *) Feature: the "charset_types" and "addition_types" directives.
  3345. *) Feature: now the "gzip_types", "ssi_types", and "sub_filter_types"
  3346. directives use hash.
  3347. *) Feature: the ngx_cpp_test_module.
  3348. *) Feature: the "expires" directive supports daily time.
  3349. *) Feature: the ngx_http_xslt_module improvements and bug fixing.
  3350. Thanks to Denis F. Latypoff and Maxim Dounin.
  3351. *) Bugfix: the "log_not_found" directive did not work for index files
  3352. tests.
  3353. *) Bugfix: HTTPS connections might hang, if kqueue, epoll, rtsig, or
  3354. eventport methods were used; the bug had appeared in 0.7.7.
  3355. *) Bugfix: if the "server_name", "valid_referers", and "map" directives
  3356. used an "*.domain.tld" wildcard and exact name "domain.tld" was not
  3357. set, then the exact name was matched by the wildcard; the bug had
  3358. appeared in 0.3.18.
  3359. Changes with nginx 0.7.8 04 Aug 2008
  3360. *) Feature: the ngx_http_xslt_module.
  3361. *) Feature: the "$arg_..." variables.
  3362. *) Feature: Solaris directio support.
  3363. Thanks to Ivan Debnar.
  3364. *) Bugfix: now if FastCGI server sends a "Location" header line without
  3365. status line, then nginx uses 302 status code.
  3366. Thanks to Maxim Dounin.
  3367. Changes with nginx 0.7.7 30 Jul 2008
  3368. *) Change: now the EAGAIN error returned by connect() is not considered
  3369. as temporary error.
  3370. *) Change: now the $ssl_client_cert variable value is a certificate with
  3371. TAB character intended before each line except first one; an
  3372. unchanged certificate is available in the $ssl_client_raw_cert
  3373. variable.
  3374. *) Feature: the "ask" parameter in the "ssl_verify_client" directive.
  3375. *) Feature: byte-range processing improvements.
  3376. Thanks to Maxim Dounin.
  3377. *) Feature: the "directio" directive.
  3378. Thanks to Jiang Hong.
  3379. *) Feature: MacOSX 10.5 sendfile() support.
  3380. *) Bugfix: now in MacOSX and Cygwin locations are tested in case
  3381. insensitive mode; however, the compare is provided by single-byte
  3382. locales only.
  3383. *) Bugfix: mail proxy SSL connections hanged, if select, poll, or
  3384. /dev/poll methods were used.
  3385. *) Bugfix: UTF-8 encoding usage in the ngx_http_autoindex_module.
  3386. Changes with nginx 0.7.6 07 Jul 2008
  3387. *) Bugfix: now if variables are used in the "access_log" directive a
  3388. request root existence is always tested.
  3389. *) Bugfix: the ngx_http_flv_module did not support several values in a
  3390. query string.
  3391. Changes with nginx 0.7.5 01 Jul 2008
  3392. *) Bugfixes in variables support in the "access_log" directive; the bugs
  3393. had appeared in 0.7.4.
  3394. *) Bugfix: nginx could not be built --without-http_gzip_module; the bug
  3395. had appeared in 0.7.3.
  3396. Thanks to Kirill A. Korinskiy.
  3397. *) Bugfix: if sub_filter and SSI were used together, then responses
  3398. might were transferred incorrectly.
  3399. Changes with nginx 0.7.4 30 Jun 2008
  3400. *) Feature: variables support in the "access_log" directive.
  3401. *) Feature: the "open_log_file_cache" directive.
  3402. *) Feature: the -g switch.
  3403. *) Feature: the "Expect" request header line support.
  3404. *) Bugfix: large SSI inclusions might be truncated.
  3405. Changes with nginx 0.7.3 23 Jun 2008
  3406. *) Change: the "rss" extension MIME type has been changed to
  3407. "application/rss+xml".
  3408. *) Change: now the "gzip_vary" directive turned on issues a
  3409. "Vary: Accept-Encoding" header line for uncompressed responses too.
  3410. *) Feature: now the "rewrite" directive does a redirect automatically if
  3411. the "https://" protocol is used.
  3412. *) Bugfix: the "proxy_pass" directive did not work with the HTTPS
  3413. protocol; the bug had appeared in 0.6.9.
  3414. Changes with nginx 0.7.2 16 Jun 2008
  3415. *) Feature: now nginx supports EDH key exchange ciphers.
  3416. *) Feature: the "ssl_dhparam" directive.
  3417. *) Feature: the $ssl_client_cert variable.
  3418. Thanks to Manlio Perillo.
  3419. *) Bugfix: after changing URI via a "rewrite" directive nginx did not
  3420. search a new location; the bug had appeared in 0.7.1.
  3421. Thanks to Maxim Dounin.
  3422. *) Bugfix: nginx could not be built without PCRE library; the bug had
  3423. appeared in 0.7.1.
  3424. *) Bugfix: when a request to a directory was redirected with the slash
  3425. added, nginx dropped a query string from the original request.
  3426. Changes with nginx 0.7.1 26 May 2008
  3427. *) Change: now locations are searched in a tree.
  3428. *) Change: the "optimize_server_names" directive was canceled due to the
  3429. "server_name_in_redirect" directive introduction.
  3430. *) Change: some long deprecated directives are not supported anymore.
  3431. *) Change: the "none" parameter in the "ssl_session_cache" directive;
  3432. now this is default parameter.
  3433. Thanks to Rob Mueller.
  3434. *) Bugfix: worker processes might not catch reconfiguration and log
  3435. rotation signals.
  3436. *) Bugfix: nginx could not be built on latest Fedora 9 Linux.
  3437. Thanks to Roxis.
  3438. Changes with nginx 0.7.0 19 May 2008
  3439. *) Change: now the 0x00-0x1F, '"' and '\' characters are escaped as \xXX
  3440. in an access_log.
  3441. Thanks to Maxim Dounin.
  3442. *) Change: now nginx allows several "Host" request header line.
  3443. *) Feature: the "modified" flag in the "expires" directive.
  3444. *) Feature: the $uid_got and $uid_set variables may be used at any
  3445. request processing stage.
  3446. *) Feature: the $hostname variable.
  3447. Thanks to Andrei Nigmatulin.
  3448. *) Feature: DESTDIR support.
  3449. Thanks to Todd A. Fisher and Andras Voroskoi.
  3450. *) Bugfix: a segmentation fault might occur in worker process on Linux,
  3451. if keepalive was enabled.
  3452. Changes with nginx 0.6.31 12 May 2008
  3453. *) Bugfix: nginx did not process FastCGI response if header was at the
  3454. end of FastCGI record; the bug had appeared in 0.6.2.
  3455. Thanks to Sergey Serov.
  3456. *) Bugfix: a segmentation fault might occur in worker process if a file
  3457. was deleted and the "open_file_cache_errors" directive was off.
  3458. Changes with nginx 0.6.30 29 Apr 2008
  3459. *) Change: now if an "include" directive pattern does not match any
  3460. file, then nginx does not issue an error.
  3461. *) Feature: now the time in directives may be specified without spaces,
  3462. for example, "1h50m".
  3463. *) Bugfix: memory leaks if the "ssl_verify_client" directive was on.
  3464. Thanks to Chavelle Vincent.
  3465. *) Bugfix: the "sub_filter" directive might set text to change into
  3466. output.
  3467. *) Bugfix: the "error_page" directive did not take into account
  3468. arguments in redirected URI.
  3469. *) Bugfix: now nginx always opens files in binary mode under Cygwin.
  3470. *) Bugfix: nginx could not be built on OpenBSD; the bug had appeared in
  3471. 0.6.15.
  3472. Changes with nginx 0.6.29 18 Mar 2008
  3473. *) Feature: the ngx_google_perftools_module.
  3474. *) Bugfix: the ngx_http_perl_module could not be built on 64-bit
  3475. platforms; the bug had appeared in 0.6.27.
  3476. Changes with nginx 0.6.28 13 Mar 2008
  3477. *) Bugfix: the rtsig method could not be built; the bug had appeared in
  3478. 0.6.27.
  3479. Changes with nginx 0.6.27 12 Mar 2008
  3480. *) Change: now by default the rtsig method is not built on
  3481. Linux 2.6.18+.
  3482. *) Change: now a request method is not changed while redirection to a
  3483. named location via an "error_page" directive.
  3484. *) Feature: the "resolver" and "resolver_timeout" directives in SMTP
  3485. proxy.
  3486. *) Feature: the "post_action" directive supports named locations.
  3487. *) Bugfix: a segmentation fault occurred in worker process, if a request
  3488. was redirected from proxy, FastCGI, or memcached location to static
  3489. named locations.
  3490. *) Bugfix: browsers did not repeat SSL handshake if there is no valid
  3491. client certificate in first handshake.
  3492. Thanks to Alexander V. Inyukhin.
  3493. *) Bugfix: if response code 495-497 was redirected via an "error_page"
  3494. directive without code change, then nginx tried to allocate too many
  3495. memory.
  3496. *) Bugfix: memory leak in long-lived non buffered connections.
  3497. *) Bugfix: memory leak in resolver.
  3498. *) Bugfix: a segmentation fault occurred in worker process, if a request
  3499. was redirected from proxy, FastCGI, or memcached location to static
  3500. named locations.
  3501. *) Bugfix: in the $proxy_host and $proxy_port variables caching.
  3502. Thanks to Sergey Bochenkov.
  3503. *) Bugfix: a "proxy_pass" directive with variables used incorrectly the
  3504. same port as in another "proxy_pass" directive with the same host
  3505. name and without variables.
  3506. Thanks to Sergey Bochenkov.
  3507. *) Bugfix: an alert "sendmsg() failed (9: Bad file descriptor)" on some
  3508. 64-bit platforms while reconfiguration.
  3509. *) Bugfix: a segmentation fault occurred in worker process, if empty
  3510. stub block was used second time in SSI.
  3511. *) Bugfix: in copying URI part contained escaped symbols into arguments.
  3512. Changes with nginx 0.6.26 11 Feb 2008
  3513. *) Bugfix: the "proxy_store" and "fastcgi_store" directives did not
  3514. check a response length.
  3515. *) Bugfix: a segmentation fault occurred in worker process, if big value
  3516. was used in a "expires" directive.
  3517. Thanks to Joaquin Cuenca Abela.
  3518. *) Bugfix: nginx incorrectly detected cache line size on Pentium 4.
  3519. Thanks to Gena Makhomed.
  3520. *) Bugfix: in proxied or FastCGI subrequests a client original method
  3521. was used instead of the GET method.
  3522. *) Bugfix: socket leak in HTTPS mode if deferred accept was used.
  3523. Thanks to Ben Maurer.
  3524. *) Bugfix: nginx issued the bogus error message "SSL_shutdown() failed
  3525. (SSL: )"; the bug had appeared in 0.6.23.
  3526. *) Bugfix: in HTTPS mode requests might fail with the "bad write retry"
  3527. error; the bug had appeared in 0.6.23.
  3528. Changes with nginx 0.6.25 08 Jan 2008
  3529. *) Change: now the "server_name_in_redirect" directive is used instead
  3530. of the "server_name" directive's special "*" parameter.
  3531. *) Change: now wildcard and regex names can be used as main name in a
  3532. "server_name" directive.
  3533. *) Change: the "satisfy_any" directive was replaced by the "satisfy"
  3534. directive.
  3535. *) Workaround: old worker processes might hog CPU after reconfiguration
  3536. if they was run under Linux OpenVZ.
  3537. *) Feature: the "min_delete_depth" directive.
  3538. *) Bugfix: the COPY and MOVE methods did not work with single files.
  3539. *) Bugfix: the ngx_http_gzip_static_module did not allow the
  3540. ngx_http_dav_module to work; the bug had appeared in 0.6.23.
  3541. *) Bugfix: socket leak in HTTPS mode if deferred accept was used.
  3542. Thanks to Ben Maurer.
  3543. *) Bugfix: nginx could not be built without PCRE library; the bug had
  3544. appeared in 0.6.23.
  3545. Changes with nginx 0.6.24 27 Dec 2007
  3546. *) Bugfix: a segmentation fault might occur in worker process if HTTPS
  3547. was used; the bug had appeared in 0.6.23.
  3548. Changes with nginx 0.6.23 27 Dec 2007
  3549. *) Change: the "off" parameter in the "ssl_session_cache" directive; now
  3550. this is default parameter.
  3551. *) Change: the "open_file_cache_retest" directive was renamed to the
  3552. "open_file_cache_valid".
  3553. *) Feature: the "open_file_cache_min_uses" directive.
  3554. *) Feature: the ngx_http_gzip_static_module.
  3555. *) Feature: the "gzip_disable" directive.
  3556. *) Feature: the "memcached_pass" directive may be used inside the "if"
  3557. block.
  3558. *) Bugfix: a segmentation fault occurred in worker process, if the
  3559. "memcached_pass" and "if" directives were used in the same location.
  3560. *) Bugfix: if a "satisfy_any on" directive was used and not all access
  3561. and auth modules directives were set, then other given access and
  3562. auth directives were not tested;
  3563. *) Bugfix: regex parameters in a "valid_referers" directive were not
  3564. inherited from previous level.
  3565. *) Bugfix: a "post_action" directive did run if a request was completed
  3566. with 499 status code.
  3567. *) Bugfix: optimization of 16K buffer usage in a SSL connection.
  3568. Thanks to Ben Maurer.
  3569. *) Bugfix: the STARTTLS in SMTP mode did not work.
  3570. Thanks to Oleg Motienko.
  3571. *) Bugfix: in HTTPS mode requests might fail with the "bad write retry"
  3572. error; the bug had appeared in 0.5.13.
  3573. Changes with nginx 0.6.22 19 Dec 2007
  3574. *) Change: now all ngx_http_perl_module methods return values copied to
  3575. perl's allocated memory.
  3576. *) Bugfix: if nginx was built with ngx_http_perl_module, the perl before
  3577. 5.8.6 was used, and perl supported threads, then during
  3578. reconfiguration the master process aborted; the bug had appeared in
  3579. 0.5.9.
  3580. Thanks to Boris Zhmurov.
  3581. *) Bugfix: the ngx_http_perl_module methods may get invalid values of
  3582. the regex captures.
  3583. *) Bugfix: a segmentation fault occurred in worker process, if the
  3584. $r->has_request_body() method was called for a request whose small
  3585. request body was already received.
  3586. *) Bugfix: large_client_header_buffers did not freed before going to
  3587. keep-alive state.
  3588. Thanks to Olexander Shtepa.
  3589. *) Bugfix: the last address was missed in the $upstream_addr variable;
  3590. the bug had appeared in 0.6.18.
  3591. *) Bugfix: the "fastcgi_catch_stderr" directive did return error code;
  3592. now it returns 502 code, that can be rerouted to a next server using
  3593. the "fastcgi_next_upstream invalid_header" directive.
  3594. *) Bugfix: a segmentation fault occurred in master process if the
  3595. "fastcgi_catch_stderr" directive was used; the bug had appeared in
  3596. 0.6.10.
  3597. Thanks to Manlio Perillo.
  3598. Changes with nginx 0.6.21 03 Dec 2007
  3599. *) Change: if variable values used in a "proxy_pass" directive contain
  3600. IP-addresses only, then a "resolver" directive is not mandatory.
  3601. *) Bugfix: a segmentation fault might occur in worker process if a
  3602. "proxy_pass" directive with URI-part was used; the bug had appeared
  3603. in 0.6.19.
  3604. *) Bugfix: if resolver was used on platform that does not support
  3605. kqueue, then nginx issued an alert "name is out of response".
  3606. Thanks to Andrei Nigmatulin.
  3607. *) Bugfix: if the $server_protocol was used in FastCGI parameters and a
  3608. request line length was near to the "client_header_buffer_size"
  3609. directive value, then nginx issued an alert "fastcgi: the request
  3610. record is too big".
  3611. *) Bugfix: if a plain text HTTP/0.9 version request was made to HTTPS
  3612. server, then nginx returned usual response.
  3613. Changes with nginx 0.6.20 28 Nov 2007
  3614. *) Bugfix: a segmentation fault might occur in worker process if a
  3615. "proxy_pass" directive with URI-part was used; the bug had appeared
  3616. in 0.6.19.
  3617. Changes with nginx 0.6.19 27 Nov 2007
  3618. *) Bugfix: the 0.6.18 version could not be built.
  3619. Changes with nginx 0.6.18 27 Nov 2007
  3620. *) Change: now the ngx_http_userid_module adds start time microseconds
  3621. to the cookie field contains a pid value.
  3622. *) Change: now the full request line instead of URI only is written to
  3623. error_log.
  3624. *) Feature: variables support in the "proxy_pass" directive.
  3625. *) Feature: the "resolver" and "resolver_timeout" directives.
  3626. *) Feature: now the directive "add_header last-modified ''" deletes a
  3627. "Last-Modified" response header line.
  3628. *) Bugfix: the "limit_rate" directive did not allow to use full
  3629. throughput, even if limit value was very high.
  3630. Changes with nginx 0.6.17 15 Nov 2007
  3631. *) Feature: the "If-Range" request header line support.
  3632. Thanks to Alexander V. Inyukhin.
  3633. *) Bugfix: URL double escaping in a redirect of the "msie_refresh"
  3634. directive; the bug had appeared in 0.6.4.
  3635. *) Bugfix: the "autoindex" directive did not work with the "alias /"
  3636. directive.
  3637. *) Bugfix: a segmentation fault might occur in worker process if
  3638. subrequests were used.
  3639. *) Bugfix: the big responses may be transferred truncated if SSL and
  3640. gzip were used.
  3641. *) Bugfix: the $status variable was equal to 0 if a proxied server
  3642. returned response in HTTP/0.9 version.
  3643. Changes with nginx 0.6.16 29 Oct 2007
  3644. *) Change: now the uname(2) is used on Linux instead of procfs.
  3645. Thanks to Ilya Novikov.
  3646. *) Bugfix: if the "?" character was in a "error_page" directive, then it
  3647. was escaped in a proxied request; the bug had appeared in 0.6.11.
  3648. *) Bugfix: compatibility with mget.
  3649. Changes with nginx 0.6.15 22 Oct 2007
  3650. *) Feature: Cygwin compatibility.
  3651. Thanks to Vladimir Kutakov.
  3652. *) Feature: the "merge_slashes" directive.
  3653. *) Feature: the "gzip_vary" directive.
  3654. *) Feature: the "server_tokens" directive.
  3655. *) Bugfix: nginx did not unescape URI in the "include" SSI command.
  3656. *) Bugfix: the segmentation fault was occurred on start or while
  3657. reconfiguration if variable was used in the "charset" or
  3658. "source_charset" directives.
  3659. *) Bugfix: nginx returned the 400 response on requests like
  3660. "GET http://www.domain.com HTTP/1.0".
  3661. Thanks to James Oakley.
  3662. *) Bugfix: if request with request body was redirected using the
  3663. "error_page" directive, then nginx tried to read the request body
  3664. again; the bug had appeared in 0.6.7.
  3665. *) Bugfix: a segmentation fault occurred in worker process if no
  3666. server_name was explicitly defined for server processing request; the
  3667. bug had appeared in 0.6.7.
  3668. Changes with nginx 0.6.14 15 Oct 2007
  3669. *) Change: now by default the "echo" SSI command uses entity encoding.
  3670. *) Feature: the "encoding" parameter in the "echo" SSI command.
  3671. *) Feature: the "access_log" directive may be used inside the
  3672. "limit_except" block.
  3673. *) Bugfix: if all upstream servers were failed, then all servers had got
  3674. weight the was equal one until servers became alive; the bug had
  3675. appeared in 0.6.6.
  3676. *) Bugfix: a segmentation fault occurred in worker process if
  3677. $date_local and $date_gmt were used outside the
  3678. ngx_http_ssi_filter_module.
  3679. *) Bugfix: a segmentation fault might occur in worker process if debug
  3680. log was enabled.
  3681. Thanks to Andrei Nigmatulin.
  3682. *) Bugfix: ngx_http_memcached_module did not set
  3683. $upstream_response_time.
  3684. Thanks to Maxim Dounin.
  3685. *) Bugfix: a worker process may got caught in an endless loop, if the
  3686. memcached was used.
  3687. *) Bugfix: nginx supported low case only "close" and "keep-alive" values
  3688. in the "Connection" request header line; the bug had appeared in
  3689. 0.6.11.
  3690. *) Bugfix: sub_filter did not work with empty substitution.
  3691. *) Bugfix: in sub_filter parsing.
  3692. Changes with nginx 0.6.13 24 Sep 2007
  3693. *) Bugfix: nginx did not close directory file on HEAD request if
  3694. autoindex was used.
  3695. Thanks to Arkadiusz Patyk.
  3696. Changes with nginx 0.6.12 21 Sep 2007
  3697. *) Change: mail proxy was split on three modules: pop3, imap and smtp.
  3698. *) Feature: the --without-mail_pop3_module, --without-mail_imap_module,
  3699. and --without-mail_smtp_module configuration parameters.
  3700. *) Feature: the "smtp_greeting_delay" and "smtp_client_buffer"
  3701. directives of the ngx_mail_smtp_module.
  3702. *) Bugfix: the trailing wildcards did not work; the bug had appeared in
  3703. 0.6.9.
  3704. *) Bugfix: nginx could not start on Solaris if the shared PCRE library
  3705. located in non-standard place was used.
  3706. *) Bugfix: the "proxy_hide_header" and "fastcgi_hide_header" directives
  3707. did not hide response header lines whose name was longer than 32
  3708. characters.
  3709. Thanks to Manlio Perillo.
  3710. Changes with nginx 0.6.11 11 Sep 2007
  3711. *) Bugfix: active connection counter always increased if mail proxy was
  3712. used.
  3713. *) Bugfix: if backend returned response header only using non-buffered
  3714. proxy, then nginx closed backend connection on timeout.
  3715. *) Bugfix: nginx did not support several "Connection" request header
  3716. lines.
  3717. *) Bugfix: if the "max_fails" was set for upstream server, then after
  3718. first failure server weight was always one; the bug had appeared in
  3719. 0.6.6.
  3720. Changes with nginx 0.6.10 03 Sep 2007
  3721. *) Feature: the "open_file_cache", "open_file_cache_retest", and
  3722. "open_file_cache_errors" directives.
  3723. *) Bugfix: socket leak; the bug had appeared in 0.6.7.
  3724. *) Bugfix: a charset set by the "charset" directive was not appended to
  3725. the "Content-Type" header set by $r->send_http_header().
  3726. *) Bugfix: a segmentation fault might occur in worker process if
  3727. /dev/poll method was used.
  3728. Changes with nginx 0.6.9 28 Aug 2007
  3729. *) Bugfix: a worker process may got caught in an endless loop, if the
  3730. HTTPS protocol was used; the bug had appeared in 0.6.7.
  3731. *) Bugfix: if server listened on two addresses or ports and trailing
  3732. wildcard was used, then nginx did not run.
  3733. *) Bugfix: the "ip_hash" directive might incorrectly mark servers as
  3734. down.
  3735. *) Bugfix: nginx could not be built on amd64; the bug had appeared in
  3736. 0.6.8.
  3737. Changes with nginx 0.6.8 20 Aug 2007
  3738. *) Change: now nginx tries to set the "worker_priority",
  3739. "worker_rlimit_nofile", "worker_rlimit_core", and
  3740. "worker_rlimit_sigpending" without super-user privileges.
  3741. *) Change: now nginx escapes space and "%" in request to a mail proxy
  3742. authentication server.
  3743. *) Change: now nginx escapes "%" in $memcached_key variable.
  3744. *) Bugfix: nginx used path relative to configuration prefix for
  3745. non-absolute configuration file path specified in the "-c" key; the
  3746. bug had appeared in 0.6.6.
  3747. *) Bugfix: nginx did not work on FreeBSD/sparc64.
  3748. Changes with nginx 0.6.7 15 Aug 2007
  3749. *) Change: now the paths specified in the "include",
  3750. "auth_basic_user_file", "perl_modules", "ssl_certificate",
  3751. "ssl_certificate_key", and "ssl_client_certificate" directives are
  3752. relative to directory of nginx configuration file nginx.conf, but not
  3753. to nginx prefix directory.
  3754. *) Change: the --sysconfdir=PATH option in configure was canceled.
  3755. *) Change: the special make target "upgrade1" was defined for online
  3756. upgrade of 0.1.x versions.
  3757. *) Feature: the "server_name" and "valid_referers" directives support
  3758. regular expressions.
  3759. *) Feature: the "server" directive in the "upstream" context supports
  3760. the "backup" parameter.
  3761. *) Feature: the ngx_http_perl_module supports the
  3762. $r->discard_request_body.
  3763. *) Feature: the "add_header Last-Modified ..." directive changes the
  3764. "Last-Modified" response header line.
  3765. *) Bugfix: if a response different than 200 was returned to a request
  3766. with body and connection went to the keep-alive state after the
  3767. request, then nginx returned 400 for the next request.
  3768. *) Bugfix: a segmentation fault occurred in worker process if invalid
  3769. address was set in the "auth_http" directive.
  3770. *) Bugfix: now nginx uses default listen backlog value 511 on all
  3771. platforms except FreeBSD.
  3772. Thanks to Jiang Hong.
  3773. *) Bugfix: a worker process may got caught in an endless loop, if a
  3774. "server" inside "upstream" block was marked as "down"; the bug had
  3775. appeared in 0.6.6.
  3776. *) Bugfix: now Solaris sendfilev() is not used to transfer the client
  3777. request body to FastCGI-server via the unix domain socket.
  3778. Changes with nginx 0.6.6 30 Jul 2007
  3779. *) Feature: the --sysconfdir=PATH option in configure.
  3780. *) Feature: named locations.
  3781. *) Feature: the $args variable can be set with the "set" directive.
  3782. *) Feature: the $is_args variable.
  3783. *) Bugfix: fair big weight upstream balancer.
  3784. *) Bugfix: if a client has closed connection to mail proxy then nginx
  3785. might not close connection to backend.
  3786. *) Bugfix: if the same host without specified port was used as backend
  3787. for HTTP and HTTPS, then nginx used only one port - 80 or 443.
  3788. *) Bugfix: fix building on Solaris/amd64 by Sun Studio 11 and early
  3789. versions; the bug had appeared in 0.6.4.
  3790. Changes with nginx 0.6.5 23 Jul 2007
  3791. *) Feature: $nginx_version variable.
  3792. Thanks to Nick S. Grechukh.
  3793. *) Feature: the mail proxy supports AUTHENTICATE in IMAP mode.
  3794. Thanks to Maxim Dounin.
  3795. *) Feature: the mail proxy supports STARTTLS in SMTP mode.
  3796. Thanks to Maxim Dounin.
  3797. *) Bugfix: now nginx escapes space in $memcached_key variable.
  3798. *) Bugfix: nginx was incorrectly built by Sun Studio on Solaris/amd64.
  3799. Thanks to Jiang Hong.
  3800. *) Bugfix: of minor potential bugs.
  3801. Thanks to Coverity's Scan.
  3802. Changes with nginx 0.6.4 17 Jul 2007
  3803. *) Security: the "msie_refresh" directive allowed XSS.
  3804. Thanks to Maxim Boguk.
  3805. *) Change: the "proxy_store" and "fastcgi_store" directives were
  3806. changed.
  3807. *) Feature: the "proxy_store_access" and "fastcgi_store_access"
  3808. directives.
  3809. *) Bugfix: nginx did not work on Solaris/sparc64 if it was built by Sun
  3810. Studio.
  3811. Thanks to Andrei Nigmatulin.
  3812. *) Workaround: for Sun Studio 12.
  3813. Thanks to Jiang Hong.
  3814. Changes with nginx 0.6.3 12 Jul 2007
  3815. *) Feature: the "proxy_store" and "fastcgi_store" directives.
  3816. *) Bugfix: a segmentation fault might occur in worker process if the
  3817. "auth_http_header" directive was used.
  3818. Thanks to Maxim Dounin.
  3819. *) Bugfix: a segmentation fault occurred in worker process if the
  3820. CRAM-MD5 authentication method was used, but it was not enabled.
  3821. *) Bugfix: a segmentation fault might occur in worker process when the
  3822. HTTPS protocol was used in the "proxy_pass" directive.
  3823. *) Bugfix: a segmentation fault might occur in worker process if the
  3824. eventport method was used.
  3825. *) Bugfix: the "proxy_ignore_client_abort" and
  3826. "fastcgi_ignore_client_abort" directives did not work; the bug had
  3827. appeared in 0.5.13.
  3828. Changes with nginx 0.6.2 09 Jul 2007
  3829. *) Bugfix: if the FastCGI header was split in records, then nginx passed
  3830. garbage in the header to a client.
  3831. Changes with nginx 0.6.1 17 Jun 2007
  3832. *) Bugfix: in SSI parsing.
  3833. *) Bugfix: if remote SSI subrequest was used, then posterior local file
  3834. subrequest might transferred to client in wrong order.
  3835. *) Bugfix: large SSI inclusions buffered in temporary files were
  3836. truncated.
  3837. *) Bugfix: the perl $$ variable value in ngx_http_perl_module was equal
  3838. to the master process identification number.
  3839. Changes with nginx 0.6.0 14 Jun 2007
  3840. *) Feature: the "server_name", "map", and "valid_referers" directives
  3841. support the "www.example.*" wildcards.
  3842. Changes with nginx 0.5.25 11 Jun 2007
  3843. *) Bugfix: nginx could not be built with the
  3844. --without-http_rewrite_module parameter; the bug had appeared in
  3845. 0.5.24.
  3846. Changes with nginx 0.5.24 06 Jun 2007
  3847. *) Security: the "ssl_verify_client" directive did not work if request
  3848. was made using HTTP/0.9.
  3849. *) Bugfix: a part of response body might be passed uncompressed if gzip
  3850. was used; the bug had appeared in 0.5.23.
  3851. Changes with nginx 0.5.23 04 Jun 2007
  3852. *) Feature: the ngx_http_ssl_module supports Server Name Indication TLS
  3853. extension.
  3854. *) Feature: the "fastcgi_catch_stderr" directive.
  3855. Thanks to Nick S. Grechukh, OWOX project.
  3856. *) Bugfix: a segmentation fault occurred in master process if two
  3857. virtual servers should bind() to the overlapping ports.
  3858. *) Bugfix: if nginx was built with ngx_http_perl_module and perl
  3859. supported threads, then during second reconfiguration the error
  3860. messages "panic: MUTEX_LOCK" and "perl_parse() failed" were issued.
  3861. *) Bugfix: in the HTTPS protocol in the "proxy_pass" directive.
  3862. Changes with nginx 0.5.22 29 May 2007
  3863. *) Bugfix: a big request body might not be passed to backend; the bug
  3864. had appeared in 0.5.21.
  3865. Changes with nginx 0.5.21 28 May 2007
  3866. *) Bugfix: if server has more than about ten locations, then regex
  3867. locations might be chosen not in that order as they were specified.
  3868. *) Bugfix: a worker process may got caught in an endless loop on 64-bit
  3869. platform, if the 33-rd or next in succession backend has failed.
  3870. Thanks to Anton Povarov.
  3871. *) Bugfix: a bus error might occur on Solaris/sparc64 if the PCRE
  3872. library was used.
  3873. Thanks to Andrei Nigmatulin.
  3874. *) Bugfix: in the HTTPS protocol in the "proxy_pass" directive.
  3875. Changes with nginx 0.5.20 07 May 2007
  3876. *) Feature: the "sendfile_max_chunk" directive.
  3877. *) Feature: the "$http_...", "$sent_http_...", and "$upstream_http_..."
  3878. variables may be changed using the "set" directive.
  3879. *) Bugfix: a segmentation fault might occur in worker process if the SSI
  3880. command 'if expr="$var = /"' was used.
  3881. *) Bugfix: trailing boundary of multipart range response was transferred
  3882. incorrectly.
  3883. Thanks to Evan Miller.
  3884. *) Bugfix: nginx did not work on Solaris/sparc64 if it was built by Sun
  3885. Studio.
  3886. Thanks to Andrei Nigmatulin.
  3887. *) Bugfix: the ngx_http_perl_module could not be built by Solaris make.
  3888. Thanks to Andrei Nigmatulin.
  3889. Changes with nginx 0.5.19 24 Apr 2007
  3890. *) Change: now the $request_time variable has millisecond precision.
  3891. *) Change: the method $r->rflush of ngx_http_perl_module was renamed to
  3892. the $r->flush.
  3893. *) Feature: the $upstream_addr variable.
  3894. *) Feature: the "proxy_headers_hash_max_size" and
  3895. "proxy_headers_hash_bucket_size" directives.
  3896. Thanks to Volodymyr Kostyrko.
  3897. *) Bugfix: the files more than 2G could not be transferred using
  3898. sendfile and limit_rate on 64-bit platforms.
  3899. *) Bugfix: the files more than 2G could not be transferred using
  3900. sendfile on 64-bit Linux.
  3901. Changes with nginx 0.5.18 19 Apr 2007
  3902. *) Feature: the ngx_http_sub_filter_module.
  3903. *) Feature: the "$upstream_http_..." variables.
  3904. *) Feature: now the $upstream_status and $upstream_response_time
  3905. variables keep data about all upstreams before X-Accel-Redirect.
  3906. *) Bugfix: a segmentation fault occurred in master process after first
  3907. reconfiguration and receiving any signal if nginx was built with
  3908. ngx_http_perl_module and perl did not support multiplicity; the bug
  3909. had appeared in 0.5.9.
  3910. *) Bugfix: if perl did not support multiplicity, then after
  3911. reconfiguration perl code did not work; the bug had appeared in
  3912. 0.3.38.
  3913. Changes with nginx 0.5.17 02 Apr 2007
  3914. *) Change: now nginx always returns the 405 status for the TRACE method.
  3915. *) Feature: now nginx supports the "include" directive inside the
  3916. "types" block.
  3917. *) Bugfix: the $document_root variable usage in the "root" and "alias"
  3918. directives is disabled: this caused recursive stack overflow.
  3919. *) Bugfix: in the HTTPS protocol in the "proxy_pass" directive.
  3920. *) Bugfix: in some cases non-cacheable variables (such as $uri variable)
  3921. returned old cached value.
  3922. Changes with nginx 0.5.16 26 Mar 2007
  3923. *) Bugfix: the C-class network was not used as hash key in the "ip_hash"
  3924. directive.
  3925. Thanks to Pavel Yarkovoy.
  3926. *) Bugfix: a segmentation fault might occur in worker process if a
  3927. charset was set in the "Content-Type" header line and the line has
  3928. trailing ";"; the bug had appeared in 0.3.50.
  3929. *) Bugfix: the "[alert] zero size buf" error when FastCGI server was
  3930. used and a request body written in a temporary file was multiple of
  3931. 32K.
  3932. *) Bugfix: nginx could not be built on Solaris without the --with-debug
  3933. option; the bug had appeared in 0.5.15.
  3934. Changes with nginx 0.5.15 19 Mar 2007
  3935. *) Feature: the mail proxy supports authenticated SMTP proxying and the
  3936. "smtp_auth", "smtp_capabilities", and "xclient" directives.
  3937. Thanks to Anton Yuzhaninov and Maxim Dounin.
  3938. *) Feature: now the keep-alive connections are closed just after
  3939. receiving the reconfiguration signal.
  3940. *) Change: the "imap" and "auth" directives were renamed to the "mail"
  3941. and "pop3_auth" directives.
  3942. *) Bugfix: a segmentation fault occurred in worker process if the
  3943. CRAM-MD5 authentication method was used and the APOP method was
  3944. disabled.
  3945. *) Bugfix: if the "starttls only" directive was used in POP3 protocol,
  3946. then nginx allowed authentication without switching to the SSL mode.
  3947. *) Bugfix: worker processes did not exit after reconfiguration and did
  3948. not rotate logs if the eventport method was used.
  3949. *) Bugfix: a worker process may got caught in an endless loop, if the
  3950. "ip_hash" directive was used.
  3951. *) Bugfix: now nginx does not log some alerts if eventport or /dev/poll
  3952. methods are used.
  3953. Changes with nginx 0.5.14 23 Feb 2007
  3954. *) Bugfix: nginx ignored superfluous closing "}" in the end of
  3955. configuration file.
  3956. Changes with nginx 0.5.13 19 Feb 2007
  3957. *) Feature: the COPY and MOVE methods.
  3958. *) Bugfix: the ngx_http_realip_module set garbage for requests passed
  3959. via keep-alive connection.
  3960. *) Bugfix: nginx did not work on big-endian 64-bit Linux.
  3961. Thanks to Andrei Nigmatulin.
  3962. *) Bugfix: now when IMAP/POP3 proxy receives too long command it closes
  3963. the connection right away, but not after timeout.
  3964. *) Bugfix: if the "epoll" method was used and a client closed a
  3965. connection prematurely, then nginx closed the connection after a send
  3966. timeout only.
  3967. *) Bugfix: nginx could not be built on platforms different from i386,
  3968. amd64, sparc, and ppc; the bug had appeared in 0.5.8.
  3969. Changes with nginx 0.5.12 12 Feb 2007
  3970. *) Bugfix: nginx could not be built on platforms different from i386,
  3971. amd64, sparc, and ppc; the bug had appeared in 0.5.8.
  3972. *) Bugfix: a segmentation fault might occur in worker process if the
  3973. temporary files were used while working with FastCGI server; the bug
  3974. had appeared in 0.5.8.
  3975. *) Bugfix: a segmentation fault might occur in worker process if the
  3976. $fastcgi_script_name variable was logged.
  3977. *) Bugfix: ngx_http_perl_module could not be built on Solaris.
  3978. Changes with nginx 0.5.11 05 Feb 2007
  3979. *) Feature: now configure detects system PCRE library in MacPorts.
  3980. Thanks to Chris McGrath.
  3981. *) Bugfix: the response was incorrect if several ranges were requested;
  3982. the bug had appeared in 0.5.6.
  3983. *) Bugfix: the "create_full_put_path" directive could not create the
  3984. intermediate directories if no "dav_access" directive was set.
  3985. Thanks to Evan Miller.
  3986. *) Bugfix: the "0" response code might be logged in the access_log
  3987. instead of the "400" and "408" error codes.
  3988. *) Bugfix: a segmentation fault might occur in worker process if nginx
  3989. was built with -O2 optimization.
  3990. Changes with nginx 0.5.10 26 Jan 2007
  3991. *) Bugfix: while online executable file upgrade the new master process
  3992. did not inherit the listening sockets; the bug had appeared in 0.5.9.
  3993. *) Bugfix: a segmentation fault might occur in worker process if nginx
  3994. was built with -O2 optimization; the bug had appeared in 0.5.1.
  3995. Changes with nginx 0.5.9 25 Jan 2007
  3996. *) Change: now the ngx_http_memcached_module uses the $memcached_key
  3997. variable value as a key.
  3998. *) Feature: the $memcached_key variable.
  3999. *) Feature: the "clean" parameter in the "client_body_in_file_only"
  4000. directive.
  4001. *) Feature: the "env" directive.
  4002. *) Feature: the "sendfile" directive is available inside the "if" block.
  4003. *) Feature: now on failure of the writing to access nginx logs a message
  4004. to error_log, but not more often than once a minute.
  4005. *) Bugfix: the "access_log off" directive did not always turn off the
  4006. logging.
  4007. Changes with nginx 0.5.8 19 Jan 2007
  4008. *) Bugfix: a segmentation fault might occur if
  4009. "client_body_in_file_only on" was used and a request body was small.
  4010. *) Bugfix: a segmentation fault occurred if
  4011. "client_body_in_file_only on" and "proxy_pass_request_body off" or
  4012. "fastcgi_pass_request_body off" directives were used, and nginx
  4013. switched to a next upstream.
  4014. *) Bugfix: if the "proxy_buffering off" directive was used and a client
  4015. connection was non-active, then the connection was closed after send
  4016. timeout; the bug had appeared in 0.4.7.
  4017. *) Bugfix: if the "epoll" method was used and a client closed a
  4018. connection prematurely, then nginx closed the connection after a send
  4019. timeout only.
  4020. *) Bugfix: the "[alert] zero size buf" error when FastCGI server was
  4021. used.
  4022. *) Bugfixes in the "limit_zone" directive.
  4023. Changes with nginx 0.5.7 15 Jan 2007
  4024. *) Feature: the ssl_session_cache storage optimization.
  4025. *) Bugfixes in the "ssl_session_cache" and "limit_zone" directives.
  4026. *) Bugfix: the segmentation fault was occurred on start or while
  4027. reconfiguration if the "ssl_session_cache" or "limit_zone" directives
  4028. were used on 64-bit platforms.
  4029. *) Bugfix: a segmentation fault occurred if the "add_before_body" or
  4030. "add_after_body" directives were used and there was no "Content-Type"
  4031. header line in response.
  4032. *) Bugfix: the OpenSSL library was always built with the threads
  4033. support.
  4034. Thanks to Den Ivanov.
  4035. *) Bugfix: the PCRE-6.5+ library and the icc compiler compatibility.
  4036. Changes with nginx 0.5.6 09 Jan 2007
  4037. *) Change: now the ngx_http_index_module ignores all methods except the
  4038. GET, HEAD, and POST methods.
  4039. *) Feature: the ngx_http_limit_zone_module.
  4040. *) Feature: the $binary_remote_addr variable.
  4041. *) Feature: the "ssl_session_cache" directives of the
  4042. ngx_http_ssl_module and ngx_imap_ssl_module.
  4043. *) Feature: the DELETE method supports recursive removal.
  4044. *) Bugfix: the byte-ranges were transferred incorrectly if the
  4045. $r->sendfile() was used.
  4046. Changes with nginx 0.5.5 24 Dec 2006
  4047. *) Change: the -v switch does not show compiler information any more.
  4048. *) Feature: the -V switch.
  4049. *) Feature: the "worker_rlimit_core" directive supports size in K, M,
  4050. and G.
  4051. *) Bugfix: the nginx.pm module now could be installed by an unprivileged
  4052. user.
  4053. *) Bugfix: a segmentation fault might occur if the $r->request_body or
  4054. $r->request_body_file methods were used.
  4055. *) Bugfix: the ppc platform specific bugs.
  4056. Changes with nginx 0.5.4 15 Dec 2006
  4057. *) Feature: the "perl" directive may be used inside the "limit_except"
  4058. block.
  4059. *) Bugfix: the ngx_http_dav_module required the "Date" request header
  4060. line for the DELETE method.
  4061. *) Bugfix: if one only parameter was used in the "dav_access" directive,
  4062. then nginx might report about configuration error.
  4063. *) Bugfix: a segmentation fault might occur if the $host variable was
  4064. used; the bug had appeared in 0.4.14.
  4065. Changes with nginx 0.5.3 13 Dec 2006
  4066. *) Feature: the ngx_http_perl_module supports the $r->status,
  4067. $r->log_error, and $r->sleep methods.
  4068. *) Feature: the $r->variable method supports variables that do not exist
  4069. in nginx configuration.
  4070. *) Bugfix: the $r->has_request_body method did not work.
  4071. Changes with nginx 0.5.2 11 Dec 2006
  4072. *) Bugfix: if the "proxy_pass" directive used the name of the "upstream"
  4073. block, then nginx tried to resolve the name; the bug had appeared in
  4074. 0.5.1.
  4075. Changes with nginx 0.5.1 11 Dec 2006
  4076. *) Bugfix: the "post_action" directive might not run after a
  4077. unsuccessful completion of a request.
  4078. *) Workaround: for Eudora for Mac; the bug had appeared in 0.4.11.
  4079. Thanks to Bron Gondwana.
  4080. *) Bugfix: if the "upstream" name was used in the "fastcgi_pass", then
  4081. the message "no port in upstream" was issued; the bug had appeared in
  4082. 0.5.0.
  4083. *) Bugfix: if the "proxy_pass" and "fastcgi_pass" directives used the
  4084. same servers but different ports, then these directives uses the
  4085. first described port; the bug had appeared in 0.5.0.
  4086. *) Bugfix: if the "proxy_pass" and "fastcgi_pass" directives used the
  4087. unix domain sockets, then these directives used first described
  4088. socket; the bug had appeared in 0.5.0.
  4089. *) Bugfix: ngx_http_auth_basic_module ignored the user if it was in the
  4090. last line in the password file and there was no the carriage return,
  4091. the line feed, or the ":" symbol after the password.
  4092. *) Bugfix: the $upstream_response_time variable might be equal to
  4093. "0.000", although response time was more than 1 millisecond.
  4094. Changes with nginx 0.5.0 04 Dec 2006
  4095. *) Change: the parameters in the "%name" form in the "log_format"
  4096. directive are not supported anymore.
  4097. *) Change: the "proxy_upstream_max_fails",
  4098. "proxy_upstream_fail_timeout", "fastcgi_upstream_max_fails",
  4099. "fastcgi_upstream_fail_timeout", "memcached_upstream_max_fails", and
  4100. "memcached_upstream_fail_timeout" directives are not supported
  4101. anymore.
  4102. *) Feature: the "server" directive in the "upstream" context supports
  4103. the "max_fails", "fail_timeout", and "down" parameters.
  4104. *) Feature: the "ip_hash" directive inside the "upstream" block.
  4105. *) Feature: the WAIT status in the "Auth-Status" header line of the
  4106. IMAP/POP3 proxy authentication server response.
  4107. *) Bugfix: nginx could not be built on 64-bit platforms; the bug had
  4108. appeared in 0.4.14.
  4109. Changes with nginx 0.4.14 27 Nov 2006
  4110. *) Feature: the "proxy_pass_error_message" directive in IMAP/POP3 proxy.
  4111. *) Feature: now configure detects system PCRE library on FreeBSD, Linux,
  4112. and NetBSD.
  4113. *) Bugfix: ngx_http_perl_module did not work with perl built with the
  4114. threads support; the bug had appeared in 0.3.38.
  4115. *) Bugfix: ngx_http_perl_module did not work if perl was called
  4116. recursively.
  4117. *) Bugfix: nginx ignored a host name in a request line.
  4118. *) Bugfix: a worker process may got caught in an endless loop, if a
  4119. FastCGI server sent too many data to the stderr.
  4120. *) Bugfix: the $upstream_response_time variable may be negative if the
  4121. system time was changed backward.
  4122. *) Bugfix: the "Auth-Login-Attempt" parameter was not sent to IMAP/POP3
  4123. proxy authentication server when POP3 was used.
  4124. *) Bugfix: a segmentation fault might occur if connect to IMAP/POP3
  4125. proxy authentication server failed.
  4126. Changes with nginx 0.4.13 15 Nov 2006
  4127. *) Feature: the "proxy_pass" directive may be used inside the
  4128. "limit_except" block.
  4129. *) Feature: the "limit_except" directive supports all WebDAV methods.
  4130. *) Bugfix: if the "add_before_body" directive was used without the
  4131. "add_after_body" directive, then a response did not transferred
  4132. complete.
  4133. *) Bugfix: a large request body did not receive if the epoll method and
  4134. the deferred accept() were used.
  4135. *) Bugfix: a charset could not be set for ngx_http_autoindex_module
  4136. responses; the bug had appeared in 0.3.50.
  4137. *) Bugfix: the "[alert] zero size buf" error when FastCGI server was
  4138. used;
  4139. *) Bugfix: the --group= configuration parameter was ignored.
  4140. Thanks to Thomas Moschny.
  4141. *) Bugfix: the 50th subrequest in SSI response did not work; the bug had
  4142. appeared in 0.3.50.
  4143. Changes with nginx 0.4.12 31 Oct 2006
  4144. *) Feature: the ngx_http_perl_module supports the $r->variable method.
  4145. *) Bugfix: if a big static file was included using SSI in a response,
  4146. then the response may be transferred incomplete.
  4147. *) Bugfix: nginx did not omit the "#fragment" part in URI.
  4148. Changes with nginx 0.4.11 25 Oct 2006
  4149. *) Feature: the POP3 proxy supports the AUTH LOGIN PLAIN and CRAM-MD5.
  4150. *) Feature: the ngx_http_perl_module supports the $r->allow_ranges
  4151. method.
  4152. *) Bugfix: if the APOP was enabled in the POP3 proxy, then the USER/PASS
  4153. commands might not work; the bug had appeared in 0.4.10.
  4154. Changes with nginx 0.4.10 23 Oct 2006
  4155. *) Feature: the POP3 proxy supports the APOP command.
  4156. *) Bugfix: if the select, poll or /dev/poll methods were used, then
  4157. while waiting authentication server response the IMAP/POP3 proxy
  4158. hogged CPU.
  4159. *) Bugfix: a segmentation fault might occur if the $server_addr variable
  4160. was used in the "map" directive.
  4161. *) Bugfix: the ngx_http_flv_module did not support the byte ranges for
  4162. full responses; the bug had appeared in 0.4.7.
  4163. *) Bugfix: nginx could not be built on Debian amd64; the bug had
  4164. appeared in 0.4.9.
  4165. Changes with nginx 0.4.9 13 Oct 2006
  4166. *) Feature: the "set" parameter in the "include" SSI command.
  4167. *) Feature: the ngx_http_perl_module now tests the nginx.pm module
  4168. version.
  4169. Changes with nginx 0.4.8 11 Oct 2006
  4170. *) Bugfix: if an "include" SSI command were before another "include" SSI
  4171. command with a "wait" parameter, then the "wait" parameter might not
  4172. work.
  4173. *) Bugfix: the ngx_http_flv_module added the FLV header to the full
  4174. responses.
  4175. Thanks to Alexey Kovyrin.
  4176. Changes with nginx 0.4.7 10 Oct 2006
  4177. *) Feature: the ngx_http_flv_module.
  4178. *) Feature: the $request_body_file variable.
  4179. *) Feature: the "charset" and "source_charset" directives support the
  4180. variables.
  4181. *) Bugfix: if an "include" SSI command were before another "include" SSI
  4182. command with a "wait" parameter, then the "wait" parameter might not
  4183. work.
  4184. *) Bugfix: if the "proxy_buffering off" directive was used or while
  4185. working with memcached the connections might not be closed on
  4186. timeout.
  4187. *) Bugfix: nginx did not run on 64-bit platforms except amd64, sparc64,
  4188. and ppc64.
  4189. Changes with nginx 0.4.6 06 Oct 2006
  4190. *) Bugfix: nginx did not run on 64-bit platforms except amd64, sparc64,
  4191. and ppc64.
  4192. *) Bugfix: nginx sent the chunked response for HTTP/1.1 request,
  4193. if its length was set by text string in the
  4194. $r->headers_out("Content-Length", ...) method.
  4195. *) Bugfix: after redirecting error by an "error_page" directive any
  4196. ngx_http_rewrite_module directive returned this error code; the bug
  4197. had appeared in 0.4.4.
  4198. Changes with nginx 0.4.5 02 Oct 2006
  4199. *) Bugfix: nginx could not be built on Linux and Solaris; the bug had
  4200. appeared in 0.4.4.
  4201. Changes with nginx 0.4.4 02 Oct 2006
  4202. *) Feature: the $scheme variable.
  4203. *) Feature: the "expires" directive supports the "max" parameter.
  4204. *) Feature: the "include" directive supports the "*" mask.
  4205. Thanks to Jonathan Dance.
  4206. *) Bugfix: the "return" directive always overrode the "error_page"
  4207. response code redirected by the "error_page" directive.
  4208. *) Bugfix: a segmentation fault occurred if zero-length body was in PUT
  4209. method.
  4210. *) Bugfix: the redirect was changed incorrectly if the variables were
  4211. used in the "proxy_redirect" directive.
  4212. Changes with nginx 0.4.3 26 Sep 2006
  4213. *) Change: now the 499 error could not be redirected using an
  4214. "error_page" directive.
  4215. *) Feature: the Solaris 10 event ports support.
  4216. *) Feature: the ngx_http_browser_module.
  4217. *) Bugfix: a segmentation fault may occur while redirecting the 400
  4218. error to the proxied server using a "proxy_pass" directive.
  4219. *) Bugfix: a segmentation fault occurred if an unix domain socket was
  4220. used in a "proxy_pass" directive; the bug had appeared in 0.3.47.
  4221. *) Bugfix: SSI did work with memcached and nonbuffered responses.
  4222. *) Workaround: of the Sun Studio PAUSE hardware capability bug.
  4223. Changes with nginx 0.4.2 14 Sep 2006
  4224. *) Bugfix: the O_NOATIME flag support on Linux was canceled; the bug had
  4225. appeared in 0.4.1.
  4226. Changes with nginx 0.4.1 14 Sep 2006
  4227. *) Bugfix: the DragonFlyBSD compatibility.
  4228. Thanks to Pavel Nazarov.
  4229. *) Workaround: of bug in 64-bit Linux sendfile(), when file is more than
  4230. 2G.
  4231. *) Feature: now on Linux nginx uses O_NOATIME flag for static requests.
  4232. Thanks to Yusuf Goolamabbas.
  4233. Changes with nginx 0.4.0 30 Aug 2006
  4234. *) Change in internal API: the HTTP modules initialization was moved
  4235. from the init module phase to the HTTP postconfiguration phase.
  4236. *) Change: now the request body is not read beforehand for the
  4237. ngx_http_perl_module: it's required to start the reading using the
  4238. $r->has_request_body method.
  4239. *) Feature: the ngx_http_perl_module supports the DECLINED return code.
  4240. *) Feature: the ngx_http_dav_module supports the incoming "Date" header
  4241. line for the PUT method.
  4242. *) Feature: the "ssi" directive is available inside the "if" block.
  4243. *) Bugfix: a segmentation fault occurred if there was an "index"
  4244. directive with variables and the first index name was without
  4245. variables; the bug had appeared in 0.1.29.
  4246. Changes with nginx 0.3.61 28 Aug 2006
  4247. *) Change: now the "tcp_nodelay" directive is turned on by default.
  4248. *) Feature: the "msie_refresh" directive.
  4249. *) Feature: the "recursive_error_pages" directive.
  4250. *) Bugfix: the "rewrite" directive returned incorrect redirect, if the
  4251. redirect had the captured escaped symbols from original URI.
  4252. Changes with nginx 0.3.60 18 Aug 2006
  4253. *) Bugfix: a worker process may got caught in an endless loop while an
  4254. error redirection; the bug had appeared in 0.3.59.
  4255. Changes with nginx 0.3.59 16 Aug 2006
  4256. *) Feature: now is possible to do several redirection using the
  4257. "error_page" directive.
  4258. *) Bugfix: the "dav_access" directive did not support three parameters.
  4259. *) Bugfix: the "error_page" directive did not changes the "Content-Type"
  4260. header line after the "X-Accel-Redirect" was used; the bug had
  4261. appeared in 0.3.58.
  4262. Changes with nginx 0.3.58 14 Aug 2006
  4263. *) Feature: the "error_page" directive supports the variables.
  4264. *) Change: now the procfs interface instead of sysctl is used on Linux.
  4265. *) Change: now the "Content-Type" header line is inherited from first
  4266. response when the "X-Accel-Redirect" was used.
  4267. *) Bugfix: the "error_page" directive did not redirect the 413 error.
  4268. *) Bugfix: the trailing "?" did not remove old arguments if no new
  4269. arguments were added to a rewritten URI.
  4270. *) Bugfix: nginx could not run on 64-bit FreeBSD 7.0-CURRENT.
  4271. Changes with nginx 0.3.57 09 Aug 2006
  4272. *) Feature: the $ssl_client_serial variable.
  4273. *) Bugfix: in the "!-e" operator of the "if" directive.
  4274. Thanks to Andrian Budanstov.
  4275. *) Bugfix: while a client certificate verification nginx did not send to
  4276. a client the required certificates information.
  4277. *) Bugfix: the $document_root variable did not support the variables in
  4278. the "root" directive.
  4279. Changes with nginx 0.3.56 04 Aug 2006
  4280. *) Feature: the "dav_access" directive.
  4281. *) Feature: the "if" directive supports the "-d", "!-d", "-e", "!-e",
  4282. "-x", and "!-x" operators.
  4283. *) Bugfix: a segmentation fault occurred if a request returned a
  4284. redirect and some sent to client header lines were logged in the
  4285. access log.
  4286. Changes with nginx 0.3.55 28 Jul 2006
  4287. *) Feature: the "stub" parameter in the "include" SSI command.
  4288. *) Feature: the "block" SSI command.
  4289. *) Feature: the unicode2nginx script was added to contrib.
  4290. *) Bugfix: if a "root" was specified by variable only, then the root was
  4291. relative to a server prefix.
  4292. *) Bugfix: if the request contained "//" or "/./" and escaped symbols
  4293. after them, then the proxied request was sent unescaped.
  4294. *) Bugfix: the $r->header_in("Cookie") of the ngx_http_perl_module now
  4295. returns all "Cookie" header lines.
  4296. *) Bugfix: a segmentation fault occurred if
  4297. "client_body_in_file_only on" was used and nginx switched to a next
  4298. upstream.
  4299. *) Bugfix: on some condition while reconfiguration character codes
  4300. inside the "charset_map" may be treated invalid; the bug had appeared
  4301. in 0.3.50.
  4302. Changes with nginx 0.3.54 11 Jul 2006
  4303. *) Feature: nginx now logs the subrequest information to the error log.
  4304. *) Feature: the "proxy_next_upstream", "fastcgi_next_upstream", and
  4305. "memcached_next_upstream" directives support the "off" parameter.
  4306. *) Feature: the "debug_connection" directive supports the CIDR address
  4307. form.
  4308. *) Bugfix: if a response of proxied server or FastCGI server was
  4309. converted from UTF-8 or back, then it may be transferred incomplete.
  4310. *) Bugfix: the $upstream_response_time variable had the time of the
  4311. first request to a backend only.
  4312. *) Bugfix: nginx could not be built on amd64 platform; the bug had
  4313. appeared in 0.3.53.
  4314. Changes with nginx 0.3.53 07 Jul 2006
  4315. *) Change: the "add_header" directive adds the string to 204, 301, and
  4316. 302 responses.
  4317. *) Feature: the "server" directive in the "upstream" context supports
  4318. the "weight" parameter.
  4319. *) Feature: the "server_name" directive supports the "*" wildcard.
  4320. *) Feature: nginx supports the request body size more than 2G.
  4321. *) Bugfix: if a client was successfully authorized using "satisfy_any
  4322. on", then anyway the message "access forbidden by rule" was written
  4323. in the log.
  4324. *) Bugfix: the "PUT" method may erroneously not create a file and return
  4325. the 409 code.
  4326. *) Bugfix: if the IMAP/POP3 backend returned an error, then nginx
  4327. continued proxying anyway.
  4328. Changes with nginx 0.3.52 03 Jul 2006
  4329. *) Change: the ngx_http_index_module behavior for the "POST /" requests
  4330. is reverted to the 0.3.40 version state: the module now does not
  4331. return the 405 error.
  4332. *) Bugfix: the worker process may got caught in an endless loop if the
  4333. limit rate was used; the bug had appeared in 0.3.37.
  4334. *) Bugfix: ngx_http_charset_module logged "unknown charset" alert, even
  4335. if the recoding was not needed; the bug had appeared in 0.3.50.
  4336. *) Bugfix: if a code response of the PUT request was 409, then a
  4337. temporary file was not removed.
  4338. Changes with nginx 0.3.51 30 Jun 2006
  4339. *) Bugfix: the "<" symbols might disappeared some conditions in the SSI;
  4340. the bug had appeared in 0.3.50.
  4341. Changes with nginx 0.3.50 28 Jun 2006
  4342. *) Change: the "proxy_redirect_errors" and "fastcgi_redirect_errors"
  4343. directives was renamed to the "proxy_intercept_errors" and
  4344. "fastcgi_intercept_errors" directives.
  4345. *) Feature: the ngx_http_charset_module supports the recoding from the
  4346. single byte encodings to the UTF-8 encoding and back.
  4347. *) Feature: the "X-Accel-Charset" response header line is supported in
  4348. proxy and FastCGI mode.
  4349. *) Bugfix: the "\" escape symbol in the "\"" and "\'" pairs in the SSI
  4350. command was removed only if the command also has the "$" symbol.
  4351. *) Bugfix: the "<!--" string might be added on some conditions in the
  4352. SSI after inclusion.
  4353. *) Bugfix: if the "Content-Length: 0" header line was in response, then
  4354. in nonbuffered proxying mode the client connection was not closed.
  4355. Changes with nginx 0.3.49 31 May 2006
  4356. *) Bugfix: in the "set" directive.
  4357. *) Bugfix: if two or more FastCGI subrequests was in SSI, then first
  4358. subrequest output was included instead of second and following
  4359. subrequests.
  4360. Changes with nginx 0.3.48 29 May 2006
  4361. *) Change: now the ngx_http_charset_module works for subrequests, if the
  4362. response has no "Content-Type" header line.
  4363. *) Bugfix: if the "proxy_pass" directive has no URI part, then the
  4364. "proxy_redirect default" directive add the unnecessary slash in start
  4365. of the rewritten redirect.
  4366. *) Bugfix: the internal redirect always transform client's HTTP method
  4367. to GET, now the transformation is made for the "X-Accel-Redirect"
  4368. redirects only and if the method is not HEAD; the bug had appeared in
  4369. 0.3.42.
  4370. *) Bugfix: the ngx_http_perl_module could not be built, if the perl was
  4371. built with the threads support; the bug had appeared in 0.3.46.
  4372. Changes with nginx 0.3.47 23 May 2006
  4373. *) Feature: the "upstream" directive.
  4374. *) Change: now the "\" escape symbol in the "\"" and "\'" pairs in the
  4375. SSI command is always removed.
  4376. Changes with nginx 0.3.46 11 May 2006
  4377. *) Feature: the "proxy_hide_header", "proxy_pass_header",
  4378. "fastcgi_hide_header", and "fastcgi_pass_header" directives.
  4379. *) Change: the "proxy_pass_x_powered_by", "fastcgi_x_powered_by", and
  4380. "proxy_pass_server" directives were canceled.
  4381. *) Feature: the "X-Accel-Buffering" response header line is supported in
  4382. proxy mode.
  4383. *) Bugfix: the reconfiguration bug and memory leaks in the
  4384. ngx_http_perl_module.
  4385. Changes with nginx 0.3.45 06 May 2006
  4386. *) Feature: the "ssl_verify_client", "ssl_verify_depth", and
  4387. "ssl_client_certificate" directives.
  4388. *) Change: the $request_method variable now returns the main request
  4389. method.
  4390. *) Change: the &deg; symbol codes were changed in koi-win conversion
  4391. table.
  4392. *) Feature: the euro and N symbols were added to koi-win conversion
  4393. table.
  4394. *) Bugfix: if nginx distributed the requests among several backends and
  4395. some backend failed, then requests intended for this backend was
  4396. directed to one live backend only instead of being distributed among
  4397. the rest.
  4398. Changes with nginx 0.3.44 04 May 2006
  4399. *) Feature: the "wait" parameter in the "include" SSI command.
  4400. *) Feature: the Ukrainian and Byelorussian characters were added to
  4401. koi-win conversion table.
  4402. *) Bugfix: in the SSI.
  4403. Changes with nginx 0.3.43 26 Apr 2006
  4404. *) Bugfix: in the SSI.
  4405. Changes with nginx 0.3.42 26 Apr 2006
  4406. *) Feature: the "bind" option of the "listen" directive in IMAP/POP3
  4407. proxy.
  4408. *) Bugfix: if the same capture in the "rewrite" directive was used more
  4409. then once.
  4410. *) Bugfix: the $sent_http_content_type, $sent_http_content_length,
  4411. $sent_http_last_modified, $sent_http_connection,
  4412. $sent_http_keep_alive, and $sent_http_transfer_encoding variables
  4413. were not written to access log.
  4414. *) Bugfix: the $sent_http_cache_control returned value of the single
  4415. "Cache-Control" response header line.
  4416. Changes with nginx 0.3.41 21 Apr 2006
  4417. *) Feature: the -v switch.
  4418. *) Bugfix: the segmentation fault may occurred if the SSI page has
  4419. remote subrequests.
  4420. *) Bugfix: in FastCGI handling.
  4421. *) Bugfix: if the perl modules path was not set using
  4422. --with-perl_modules_path=PATH or the "perl_modules", then the
  4423. segmentation fault was occurred.
  4424. Changes with nginx 0.3.40 19 Apr 2006
  4425. *) Feature: the ngx_http_dav_module supports the MKCOL method.
  4426. *) Feature: the "create_full_put_path" directive.
  4427. *) Feature: the "$limit_rate" variable.
  4428. Changes with nginx 0.3.39 17 Apr 2006
  4429. *) Feature: the "uninitialized_variable_warn" directive; the logging
  4430. level of the "uninitialized variable" message was lowered from
  4431. "alert" to "warn".
  4432. *) Feature: the "override_charset" directive.
  4433. *) Change: now if the unknown variable is used in the "echo" and "if
  4434. expr='$name'" SSI-commands, then the "unknown variable" message is
  4435. not logged.
  4436. *) Bugfix: the active connection counter increased on the exceeding of
  4437. the connection limit specified by the "worker_connections" directive;
  4438. the bug had appeared in 0.2.0.
  4439. *) Bugfix: the limit rate might not work on some condition; the bug had
  4440. appeared in 0.3.38.
  4441. Changes with nginx 0.3.38 14 Apr 2006
  4442. *) Feature: the ngx_http_dav_module.
  4443. *) Change: the ngx_http_perl_module optimizations.
  4444. Thanks to Sergey Skvortsov.
  4445. *) Feature: the ngx_http_perl_module supports the $r->request_body_file
  4446. method.
  4447. *) Feature: the "client_body_in_file_only" directive.
  4448. *) Workaround: now on disk overflow nginx tries to write access logs
  4449. once a second only.
  4450. Thanks to Anton Yuzhaninov and Maxim Dounin.
  4451. *) Bugfix: now the "limit_rate" directive more precisely limits rate if
  4452. rate is more than 100 Kbyte/s.
  4453. Thanks to ForJest.
  4454. *) Bugfix: now the IMAP/POP3 proxy escapes the "\r" and "\n" symbols in
  4455. login and password to pass authorization server.
  4456. Thanks to Maxim Dounin.
  4457. Changes with nginx 0.3.37 07 Apr 2006
  4458. *) Feature: the "limit_except" directive.
  4459. *) Feature: the "if" directive supports the "!~", "!~*", "-f", and "!-f"
  4460. operators.
  4461. *) Feature: the ngx_http_perl_module supports the $r->request_body
  4462. method.
  4463. *) Bugfix: in the ngx_http_addition_filter_module.
  4464. Changes with nginx 0.3.36 05 Apr 2006
  4465. *) Feature: the ngx_http_addition_filter_module.
  4466. *) Feature: the "proxy_pass" and "fastcgi_pass" directives may be used
  4467. inside the "if" block.
  4468. *) Feature: the "proxy_ignore_client_abort" and
  4469. "fastcgi_ignore_client_abort" directives.
  4470. *) Feature: the "$request_completion" variable.
  4471. *) Feature: the ngx_http_perl_module supports the $r->request_method and
  4472. $r->remote_addr.
  4473. *) Feature: the ngx_http_ssi_module supports the "elif" command.
  4474. *) Bugfix: the "\/" string in the expression of the "if" command of the
  4475. ngx_http_ssi_module was treated incorrectly.
  4476. *) Bugfix: in the regular expressions in the "if" command of the
  4477. ngx_http_ssi_module.
  4478. *) Bugfix: if the relative path was specified in the
  4479. "client_body_temp_path", "proxy_temp_path", "fastcgi_temp_path", and
  4480. "perl_modules" directives, then the directory was used relatively to
  4481. a current path but not to a server prefix.
  4482. Changes with nginx 0.3.35 22 Mar 2006
  4483. *) Bugfix: the accept-filter and the TCP_DEFER_ACCEPT option were set
  4484. for first "listen" directive only; the bug had appeared in 0.3.31.
  4485. *) Bugfix: in the "proxy_pass" directive without the URI part in a
  4486. subrequest.
  4487. Changes with nginx 0.3.34 21 Mar 2006
  4488. *) Feature: the "add_header" directive supports the variables.
  4489. Changes with nginx 0.3.33 15 Mar 2006
  4490. *) Feature: the "http_503" parameter of the "proxy_next_upstream" or
  4491. "fastcgi_next_upstream" directives.
  4492. *) Bugfix: ngx_http_perl_module did not work with inlined in the
  4493. configuration code, if it was not started with the "sub" word.
  4494. *) Bugfix: in the "post_action" directive.
  4495. Changes with nginx 0.3.32 11 Mar 2006
  4496. *) Bugfix: the debug logging on startup and reconfiguration time was
  4497. removed; the bug had appeared in 0.3.31.
  4498. Changes with nginx 0.3.31 10 Mar 2006
  4499. *) Change: now nginx passes the malformed proxied backend responses.
  4500. *) Feature: the "listen" directives support the address in the "*:port"
  4501. form.
  4502. *) Feature: the EVFILER_TIMER support in MacOSX 10.4.
  4503. *) Workaround: for MacOSX 64-bit kernel kqueue millisecond timeout bug.
  4504. Thanks to Andrei Nigmatulin.
  4505. *) Bugfix: if there were several "listen" directives listening one
  4506. various addresses inside one server, then server names like
  4507. "*.domain.tld" worked for first address only; the bug had appeared in
  4508. 0.3.18.
  4509. *) Bugfix: if the HTTPS protocol was used in the "proxy_pass" directive
  4510. and the request body was in temporary file then the request was not
  4511. transferred.
  4512. *) Bugfix: perl 5.8.8 compatibility.
  4513. Changes with nginx 0.3.30 22 Feb 2006
  4514. *) Change: the ECONNABORTED error log level was changed to "error" from
  4515. "crit".
  4516. *) Bugfix: the ngx_http_perl_module could not be build without the
  4517. ngx_http_ssi_filter_module.
  4518. *) Bugfix: nginx could not be built on i386 platform, if the PIC was
  4519. used; the bug had appeared in 0.3.27.
  4520. Changes with nginx 0.3.29 20 Feb 2006
  4521. *) Feature: now nginx uses less memory, if PHP in FastCGI mode sends
  4522. many warnings before the response.
  4523. *) Bugfix: the "Transfer-Encoding: chunked" header line was issued in
  4524. the 204 responses for the HTTP/1.1 requests.
  4525. *) Bugfix: nginx returned the 502 response, if the complete response
  4526. header lines were transferred in a separate FastCGI records.
  4527. *) Bugfix: if the proxied URI was specified in the "post_action"
  4528. directive, then it ran only after a successful completion of a
  4529. request.
  4530. Changes with nginx 0.3.28 16 Feb 2006
  4531. *) Feature: the "restrict_host_names" directive was canceled.
  4532. *) Feature: the --with-cpu-opt=ppc64 configuration parameter.
  4533. *) Bugfix: on some condition the proxied connection with a client was
  4534. terminated prematurely.
  4535. Thanks to Vladimir Shutoff.
  4536. *) Bugfix: the "X-Accel-Limit-Rate" header line was not taken into
  4537. account if the request was redirected using the "X-Accel-Redirect"
  4538. header line.
  4539. *) Bugfix: the "post_action" directive ran only after a successful
  4540. completion of a request.
  4541. *) Bugfix: the proxied response body generated by the "post_action"
  4542. directive was transferred to a client.
  4543. Changes with nginx 0.3.27 08 Feb 2006
  4544. *) Change: the "variables_hash_max_size" and
  4545. "variables_hash_bucket_size" directives.
  4546. *) Feature: the $body_bytes_sent variable can be used not only in the
  4547. "log_format" directive.
  4548. *) Feature: the $ssl_protocol and $ssl_cipher variables.
  4549. *) Feature: the cache line size detection for widespread CPUs at start
  4550. time.
  4551. *) Feature: now the "accept_mutex" directive is supported using fcntl(2)
  4552. on platforms different from i386, amd64, sparc64, and ppc.
  4553. *) Feature: the "lock_file" directive and the --with-lock-path=PATH
  4554. autoconfiguration directive.
  4555. *) Bugfix: if the HTTPS protocol was used in the "proxy_pass" directive
  4556. then the requests with the body was not transferred.
  4557. Changes with nginx 0.3.26 03 Feb 2006
  4558. *) Change: the "optimize_host_names" directive was renamed to the
  4559. "optimize_server_names".
  4560. *) Bugfix: if in the "proxy_pass" directive was no the URI part, then
  4561. the main request URI was transferred to a backend while proxying the
  4562. SSI subrequest.
  4563. Changes with nginx 0.3.25 01 Feb 2006
  4564. *) Bugfix: the segmentation fault was occurred on start or while
  4565. reconfiguration if there was invalid configuration; the bug had
  4566. appeared in 0.3.24.
  4567. Changes with nginx 0.3.24 01 Feb 2006
  4568. *) Workaround: for bug in FreeBSD kqueue.
  4569. *) Bugfix: now a response generated by the "post_action" directive is
  4570. not transferred to a client.
  4571. *) Bugfix: the memory leaks were occurring if many log files were used.
  4572. *) Bugfix: the first "proxy_redirect" directive was working inside one
  4573. location.
  4574. *) Bugfix: on 64-bit platforms segmentation fault may occurred on start
  4575. if the many names were used in the "server_name" directives; the bug
  4576. had appeared in 0.3.18.
  4577. Changes with nginx 0.3.23 24 Jan 2006
  4578. *) Feature: the "optimize_host_names" directive.
  4579. *) Bugfix: in using of the variables in the "path" and "alias"
  4580. directives.
  4581. *) Bugfix: the ngx_http_perl_module was incorrectly built on Linux and
  4582. Solaris.
  4583. Changes with nginx 0.3.22 17 Jan 2006
  4584. *) Feature: the ngx_http_perl_module supports the $r->args and
  4585. $r->unescape methods.
  4586. *) Feature: the method $r->query_string of ngx_http_perl_module was
  4587. canceled.
  4588. *) Bugfix: segmentation fault was occurred if the "none" or "blocked"
  4589. values was specified in the "valid_referers" directive; the bug had
  4590. appeared in 0.3.18.
  4591. Changes with nginx 0.3.21 16 Jan 2006
  4592. *) Feature: the ngx_http_perl_module.
  4593. *) Change: the "valid_referers" directive allows the referrers without
  4594. URI part.
  4595. Changes with nginx 0.3.20 11 Jan 2006
  4596. *) Bugfix: in SSI handling.
  4597. *) Bugfix: the ngx_http_memcached_module did not support the keys in the
  4598. "/usr?args" form.
  4599. Changes with nginx 0.3.19 28 Dec 2005
  4600. *) Feature: the "path" and "alias" directives support the variables.
  4601. *) Change: now the "valid_referers" directive again checks the URI part.
  4602. *) Bugfix: in SSI handling.
  4603. Changes with nginx 0.3.18 26 Dec 2005
  4604. *) Feature: the "server_names" directive supports the ".domain.tld"
  4605. names.
  4606. *) Feature: the "server_names" directive uses the hash for the
  4607. "*.domain.tld" names and more effective hash for usual names.
  4608. *) Change: the "server_names_hash_max_size" and
  4609. "server_names_hash_bucket_size" directives.
  4610. *) Change: the "server_names_hash" and "server_names_hash_threshold"
  4611. directives were canceled.
  4612. *) Feature: the "valid_referers" directive uses the hash site names.
  4613. *) Change: now the "valid_referers" directive checks the site names only
  4614. without the URI part.
  4615. *) Bugfix: some ".domain.tld" names incorrectly processed by the
  4616. ngx_http_map_module.
  4617. *) Bugfix: segmentation fault was occurred if configuration file did not
  4618. exist; the bug had appeared in 0.3.12.
  4619. *) Bugfix: on 64-bit platforms segmentation fault may occurred on start;
  4620. the bug had appeared in 0.3.16.
  4621. Changes with nginx 0.3.17 18 Dec 2005
  4622. *) Change: now on Linux configure checks the presence of epoll and
  4623. sendfile64() in kernel.
  4624. *) Feature: the "map" directive supports domain names in the
  4625. ".domain.tld" form.
  4626. *) Bugfix: the timeouts were not used in SSL handshake; the bug had
  4627. appeared in 0.2.4.
  4628. *) Bugfix: in the HTTPS protocol in the "proxy_pass" directive.
  4629. *) Bugfix: when the HTTPS protocol was used in the "proxy_pass"
  4630. directive the port 80 was used by default.
  4631. Changes with nginx 0.3.16 16 Dec 2005
  4632. *) Feature: the ngx_http_map_module.
  4633. *) Feature: the "types_hash_max_size" and "types_hash_bucket_size"
  4634. directives.
  4635. *) Feature: the "ssi_value_length" directive.
  4636. *) Feature: the "worker_rlimit_core" directive.
  4637. *) Workaround: the connection number in logs was always 1 if nginx was
  4638. built by the icc 8.1 or 9.0 compilers with optimization for
  4639. Pentium 4.
  4640. *) Bugfix: the "config timefmt" SSI command set incorrect time format.
  4641. *) Bugfix: nginx did not close connection to IMAP/POP3 backend for the
  4642. SSL connections; the bug had appeared in 0.3.13.
  4643. Thanks to Rob Mueller.
  4644. *) Bugfix: segmentation fault may occurred in at SSL shutdown; the bug
  4645. had appeared in 0.3.13.
  4646. Changes with nginx 0.3.15 07 Dec 2005
  4647. *) Feature: the new 444 code of the "return" directive to close
  4648. connection.
  4649. *) Feature: the "so_keepalive" directive in IMAP/POP3 proxy.
  4650. *) Bugfix: if there are unclosed connection nginx now calls abort() only
  4651. on graceful quit and active "debug_points" directive.
  4652. Changes with nginx 0.3.14 05 Dec 2005
  4653. *) Bugfix: in the 304 response the body was transferred; the bug had
  4654. appeared in 0.3.13.
  4655. Changes with nginx 0.3.13 05 Dec 2005
  4656. *) Feature: the IMAP/POP3 proxy supports STARTTLS and STLS.
  4657. *) Bugfix: the IMAP/POP3 proxy did not work with the select, poll, and
  4658. /dev/poll methods.
  4659. *) Bugfix: in SSI handling.
  4660. *) Bugfix: now Solaris sendfilev() is not used to transfer the client
  4661. request body to FastCGI-server via the unix domain socket.
  4662. *) Bugfix: the "auth_basic" directive did not disable the authorization;
  4663. the bug had appeared in 0.3.11.
  4664. Changes with nginx 0.3.12 26 Nov 2005
  4665. *) Security: if nginx was built with the ngx_http_realip_module and the
  4666. "satisfy_any on" directive was used, then access and authorization
  4667. directives did not work. The ngx_http_realip_module was not built and
  4668. is not built by default.
  4669. *) Change: the "$time_gmt" variable name was changed to "$time_local".
  4670. *) Change: the "proxy_header_buffer_size" and
  4671. "fastcgi_header_buffer_size" directives was renamed to the
  4672. "proxy_buffer_size" and "fastcgi_buffer_size" directives.
  4673. *) Feature: the ngx_http_memcached_module.
  4674. *) Feature: the "proxy_buffering" directive.
  4675. *) Bugfix: the changes in accept mutex handling when the "rtsig" method
  4676. was used; the bug had appeared in 0.3.0.
  4677. *) Bugfix: if the client sent the "Transfer-Encoding: chunked" header
  4678. line, then nginx returns the 411 error.
  4679. *) Bugfix: if the "auth_basic" directive was inherited from the http
  4680. level, then the realm in the "WWW-Authenticate" header line was
  4681. without the "Basic realm" text.
  4682. *) Bugfix: if the "combined" format was explicitly specified in the
  4683. "access_log" directive, then the empty lines was written to the log;
  4684. the bug had appeared in 0.3.8.
  4685. *) Bugfix: nginx did not run on the sparc platform under any OS except
  4686. Solaris.
  4687. *) Bugfix: now it is not necessary to place space between the quoted
  4688. string and closing bracket in the "if" directive.
  4689. Changes with nginx 0.3.11 15 Nov 2005
  4690. *) Bugfix: nginx did not pass the client request headers and body while
  4691. proxying; the bug had appeared in 0.3.10.
  4692. Changes with nginx 0.3.10 15 Nov 2005
  4693. *) Change: the "valid_referers" directive and the "$invalid_referer"
  4694. variable were moved to the new ngx_http_referer_module from the
  4695. ngx_http_rewrite_module.
  4696. *) Change: the "$apache_bytes_sent" variable name was changed to
  4697. "$body_bytes_sent".
  4698. *) Feature: the "$sent_http_..." variables.
  4699. *) Feature: the "if" directive supports the "=" and "!=" operations.
  4700. *) Feature: the "proxy_pass" directive supports the HTTPS protocol.
  4701. *) Feature: the "proxy_set_body" directive.
  4702. *) Feature: the "post_action" directive.
  4703. *) Feature: the ngx_http_empty_gif_module.
  4704. *) Feature: the "worker_cpu_affinity" directive for Linux.
  4705. *) Bugfix: the "rewrite" directive did not unescape URI part in
  4706. redirect, now it is unescaped except the %00-%25 and %7F-%FF
  4707. characters.
  4708. *) Bugfix: nginx could not be built by the icc 9.0 compiler.
  4709. *) Bugfix: if the SSI was enabled for zero size static file, then the
  4710. chunked response was encoded incorrectly.
  4711. Changes with nginx 0.3.9 10 Nov 2005
  4712. *) Bugfix: nginx considered URI as unsafe if two any symbols was between
  4713. two slashes; the bug had appeared in 0.3.8.
  4714. Changes with nginx 0.3.8 09 Nov 2005
  4715. *) Security: nginx now checks URI got from a backend in
  4716. "X-Accel-Redirect" header line or in SSI file for the "/../" paths
  4717. and zeroes.
  4718. *) Change: nginx now does not treat the empty user name in the
  4719. "Authorization" header line as valid one.
  4720. *) Feature: the "ssl_session_timeout" directives of the
  4721. ngx_http_ssl_module and ngx_imap_ssl_module.
  4722. *) Feature: the "auth_http_header" directive of the
  4723. ngx_imap_auth_http_module.
  4724. *) Feature: the "add_header" directive.
  4725. *) Feature: the ngx_http_realip_module.
  4726. *) Feature: the new variables to use in the "log_format" directive:
  4727. $bytes_sent, $apache_bytes_sent, $status, $time_gmt, $uri,
  4728. $request_time, $request_length, $upstream_status,
  4729. $upstream_response_time, $gzip_ratio, $uid_got, $uid_set,
  4730. $connection, $pipe, and $msec. The parameters in the "%name" form
  4731. will be canceled soon.
  4732. *) Change: now the false variable values in the "if" directive are the
  4733. empty string "" and string starting with "0".
  4734. *) Bugfix: while using proxied or FastCGI-server nginx may leave
  4735. connections and temporary files with client requests in open state.
  4736. *) Bugfix: the worker processes did not flush the buffered logs on
  4737. graceful exit.
  4738. *) Bugfix: if the request URI was changes by the "rewrite" directive and
  4739. the request was proxied in location given by regular expression, then
  4740. the incorrect request was transferred to backend; the bug had
  4741. appeared in 0.2.6.
  4742. *) Bugfix: the "expires" directive did not remove the previous "Expires"
  4743. header.
  4744. *) Bugfix: nginx may stop to accept requests if the "rtsig" method and
  4745. several worker processes were used.
  4746. *) Bugfix: the "\"" and "\'" escape symbols were incorrectly handled in
  4747. SSI commands.
  4748. *) Bugfix: if the response was ended just after the SSI command and
  4749. gzipping was used, then the response did not transferred complete or
  4750. did not transferred at all.
  4751. Changes with nginx 0.3.7 27 Oct 2005
  4752. *) Feature: the "access_log" supports the "buffer=" parameter.
  4753. *) Bugfix: nginx could not be built on platforms different from i386,
  4754. amd64, sparc, and ppc; the bug had appeared in 0.3.2.
  4755. Changes with nginx 0.3.6 24 Oct 2005
  4756. *) Change: now the IMAP/POP3 proxy do not send the empty login to
  4757. authorization server.
  4758. *) Feature: the "log_format" supports the variables in the $name form.
  4759. *) Bugfix: if at least in one server was no the "listen" directive, then
  4760. nginx did not listen on the 80 port; the bug had appeared in 0.3.3.
  4761. *) Bugfix: if the URI part is omitted in "proxy_pass" directive, the 80
  4762. port was always used.
  4763. Changes with nginx 0.3.5 21 Oct 2005
  4764. *) Bugfix: the segmentation fault may occurred if the IMAP/POP3 login
  4765. was changed by authorization server; the bug had appeared in 0.2.2.
  4766. *) Bugfix: the accept mutex did not work and all connections were
  4767. handled by one process; the bug had appeared in 0.3.3.
  4768. *) Bugfix: the timeout did not work if the "rtsig" method and the
  4769. "timer_resolution" directive were used.
  4770. Changes with nginx 0.3.4 19 Oct 2005
  4771. *) Bugfix: nginx could not be built on Linux 2.4+ and MacOS X; the bug
  4772. had appeared in 0.3.3.
  4773. Changes with nginx 0.3.3 19 Oct 2005
  4774. *) Change: the "bl" and "af" parameters of the "listen" directive was
  4775. renamed to the "backlog" and "accept_filter".
  4776. *) Feature: the "rcvbuf" and "sndbuf" parameters of the "listen"
  4777. directive.
  4778. *) Change: the "$msec" log parameter does not require now the additional
  4779. the gettimeofday() system call.
  4780. *) Feature: the -t switch now tests the "listen" directives.
  4781. *) Bugfix: if the invalid address was specified in the "listen"
  4782. directive, then after the -HUP signal nginx left an open socket in
  4783. the CLOSED state.
  4784. *) Bugfix: the mime type may be incorrectly set to default value for
  4785. index file with variable in the name; the bug had appeared in 0.3.0.
  4786. *) Feature: the "timer_resolution" directive.
  4787. *) Feature: the millisecond "$upstream_response_time" log parameter.
  4788. *) Bugfix: a temporary file with client request body now is removed just
  4789. after the response header was transferred to a client.
  4790. *) Bugfix: OpenSSL 0.9.6 compatibility.
  4791. *) Bugfix: the SSL certificate and key file paths could not be relative.
  4792. *) Bugfix: the "ssl_prefer_server_ciphers" directive did not work in the
  4793. ngx_imap_ssl_module.
  4794. *) Bugfix: the "ssl_protocols" directive allowed to specify the single
  4795. protocol only.
  4796. Changes with nginx 0.3.2 12 Oct 2005
  4797. *) Feature: the Sun Studio 10 C compiler support.
  4798. *) Feature: the "proxy_upstream_max_fails",
  4799. "proxy_upstream_fail_timeout", "fastcgi_upstream_max_fails", and
  4800. "fastcgi_upstream_fail_timeout" directives.
  4801. Changes with nginx 0.3.1 10 Oct 2005
  4802. *) Bugfix: the segmentation fault occurred when the signal queue
  4803. overflowed if the "rtsig" method was used; the bug had appeared in
  4804. 0.2.0.
  4805. *) Change: correct handling of the "\\", "\"", "\'", and "\$" pairs in
  4806. SSI.
  4807. Changes with nginx 0.3.0 07 Oct 2005
  4808. *) Change: the 10-days live time limit of worker process was eliminated.
  4809. The limit was introduced because of millisecond timers overflow.
  4810. Changes with nginx 0.2.6 05 Oct 2005
  4811. *) Change: while using load-balancing the time before the failed backend
  4812. retry was decreased from 60 to 10 seconds.
  4813. *) Change: the "proxy_pass_unparsed_uri" was canceled, the original URI
  4814. now passed, if the URI part is omitted in "proxy_pass" directive.
  4815. *) Feature: the "error_page" directive supports redirects and allows
  4816. more flexible to change an error code.
  4817. *) Change: the charset in the "Content-Type" header line now is ignored
  4818. in proxied subrequests.
  4819. *) Bugfix: if the URI was changed in the "if" block and request did not
  4820. found new configuration, then the ngx_http_rewrite_module rules ran
  4821. again.
  4822. *) Bugfix: if the "set" directive set the ngx_http_geo_module variable
  4823. in some configuration part, the this variable was not available in
  4824. other configuration parts and the "using uninitialized variable"
  4825. error was occurred; the bug had appeared in 0.2.2.
  4826. Changes with nginx 0.2.5 04 Oct 2005
  4827. *) Change: the duplicate value of the ngx_http_geo_module variable now
  4828. causes the warning and changes old value.
  4829. *) Feature: the ngx_http_ssi_module supports the "set" command.
  4830. *) Feature: the ngx_http_ssi_module supports the "file" parameter in the
  4831. "include" command.
  4832. *) Feature: the ngx_http_ssi_module supports the variable value
  4833. substitutions in expressions of the "if" command.
  4834. Changes with nginx 0.2.4 03 Oct 2005
  4835. *) Feature: the ngx_http_ssi_module supports "$var=text", "$var!=text",
  4836. "$var=/text/", and "$var!=/text/" expressions in the "if" command.
  4837. *) Bugfix: in proxying location without trailing slash; the bug had
  4838. appeared in 0.1.44.
  4839. *) Bugfix: the segmentation fault may occurred if the "rtsig" method was
  4840. used; the bug had appeared in 0.2.0.
  4841. Changes with nginx 0.2.3 30 Sep 2005
  4842. *) Bugfix: nginx could not be built without the --with-debug option; the
  4843. bug had appeared in 0.2.2.
  4844. Changes with nginx 0.2.2 30 Sep 2005
  4845. *) Feature: the "config errmsg" command of the ngx_http_ssi_module.
  4846. *) Change: the ngx_http_geo_module variables can be overridden by the
  4847. "set" directive.
  4848. *) Feature: the "ssl_protocols" and "ssl_prefer_server_ciphers"
  4849. directives of the ngx_http_ssl_module and ngx_imap_ssl_module.
  4850. *) Bugfix: the ngx_http_autoindex_module did not show correctly the long
  4851. file names;
  4852. *) Bugfix: the ngx_http_autoindex_module now do not show the files
  4853. starting by dot.
  4854. *) Bugfix: if the SSL handshake failed then another connection may be
  4855. closed too.
  4856. Thanks to Rob Mueller.
  4857. *) Bugfix: the export versions of MSIE 5.x could not connect via HTTPS.
  4858. Changes with nginx 0.2.1 23 Sep 2005
  4859. *) Bugfix: if all backend using in load-balancing failed after one
  4860. error, then nginx may got caught in an endless loop; the bug had
  4861. appeared in 0.2.0.
  4862. Changes with nginx 0.2.0 23 Sep 2005
  4863. *) The pid-file names used during online upgrade was changed and now is
  4864. not required a manual rename operation. The old master process adds
  4865. the ".oldbin" suffix to its pid-file and executes a new binary file.
  4866. The new master process creates usual pid-file without the ".newbin"
  4867. suffix. If the master process exits, then old master process renames
  4868. back its pid-file with the ".oldbin" suffix to the pid-file without
  4869. suffix.
  4870. *) Change: the "worker_connections" directive, new name of the
  4871. "connections" directive; now the directive specifies maximum number
  4872. of connections, but not maximum socket descriptor number.
  4873. *) Feature: SSL supports the session cache inside one worker process.
  4874. *) Feature: the "satisfy_any" directive.
  4875. *) Change: the ngx_http_access_module and ngx_http_auth_basic_module do
  4876. not run for subrequests.
  4877. *) Feature: the "worker_rlimit_nofile" and "worker_rlimit_sigpending"
  4878. directives.
  4879. *) Bugfix: if all backend using in load-balancing failed after one
  4880. error, then nginx did not try do connect to them during 60 seconds.
  4881. *) Bugfix: in IMAP/POP3 command argument parsing.
  4882. Thanks to Rob Mueller.
  4883. *) Bugfix: errors while using SSL in IMAP/POP3 proxy.
  4884. *) Bugfix: errors while using SSI and gzipping.
  4885. *) Bugfix: the "Expires" and "Cache-Control" header lines were omitted
  4886. from the 304 responses.
  4887. Thanks to Alexandr Kukushkin.
  4888. Changes with nginx 0.1.45 08 Sep 2005
  4889. *) Change: the "ssl_engine" directive was canceled in the
  4890. ngx_http_ssl_module and now is introduced at global level.
  4891. *) Bugfix: the responses with SSI subrequests did not transferred via
  4892. SSL connection.
  4893. *) Various bug fixes in the IMAP/POP3 proxy.
  4894. Changes with nginx 0.1.44 06 Sep 2005
  4895. *) Feature: the IMAP/POP3 proxy supports SSL.
  4896. *) Feature: the "proxy_timeout" directive of the ngx_imap_proxy_module.
  4897. *) Feature: the "userid_mark" directive.
  4898. *) Feature: the $remote_user variable value is determined independently
  4899. of authorization use.
  4900. Changes with nginx 0.1.43 30 Aug 2005
  4901. *) Feature: the listen(2) backlog in the "listen" directive can be
  4902. changed using the -HUP signal.
  4903. *) Feature: the geo2nginx.pl script was added to contrib.
  4904. *) Change: the FastCGI parameters with the empty values now are passed
  4905. to a server.
  4906. *) Bugfix: the segmentation fault occurred or the worker process may got
  4907. caught in an endless loop if the proxied or FastCGI server sent the
  4908. "Cache-Control" header line and the "expires" directive was used; in
  4909. the proxied mode the bug had appeared in 0.1.29.
  4910. Changes with nginx 0.1.42 23 Aug 2005
  4911. *) Bugfix: if the request URI had a zero length after the processing in
  4912. the ngx_http_proxy_module, then the segmentation fault or bus error
  4913. occurred in the ngx_http_proxy_module.
  4914. *) Bugfix: the "limit_rate" directive did not work inside the "if"
  4915. block; the bug had appeared in 0.1.38.
  4916. Changes with nginx 0.1.41 25 Jul 2005
  4917. *) Bugfix: if the variable was used in the configuration file, then it
  4918. can not be used in SSI.
  4919. Changes with nginx 0.1.40 22 Jul 2005
  4920. *) Bugfix: if a client sent too long header line, then the request
  4921. information did not logged in the error log.
  4922. *) Bugfix: the "Set-Cookie" header line was not transferred when the
  4923. "X-Accel-Redirect" was used; the bug had appeared in 0.1.39.
  4924. *) Bugfix: the "Content-Disposition" header line was not transferred
  4925. when the "X-Accel-Redirect" was used.
  4926. *) Bugfix: the master process did not close the listen socket on the
  4927. SIGQUIT signal.
  4928. *) Bugfix: after on-line upgrade on Linux and Solaris the process name
  4929. became shorter in the "ps" command.
  4930. Changes with nginx 0.1.39 14 Jul 2005
  4931. *) The changes in the ngx_http_charset_module: the "default_charset"
  4932. directive was canceled; the "charset" directive sets the response
  4933. charset; the "source_charset" directive sets the source charset only.
  4934. *) Bugfix: the backend "WWW-Authenticate" header line did not
  4935. transferred while the 401 response code redirecting.
  4936. *) Bugfix: the ngx_http_proxy_module and ngx_http_fastcgi_module may
  4937. close a connection before anything was transferred to a client; the
  4938. bug had appeared in 0.1.38.
  4939. *) Workaround: the Linux glibc crypt_r() initialization bug.
  4940. *) Bugfix: the ngx_http_ssi_module did not support the relative URI in
  4941. the "include virtual" command.
  4942. *) Bugfix: if the backend response had the "Location" header line and
  4943. nginx should not rewrite this line, then the 500 code response body
  4944. was transferred; the bug had appeared in 0.1.29.
  4945. *) Bugfix: some directives of the ngx_http_proxy_module and
  4946. ngx_http_fastcgi_module were not inherited from the server to the
  4947. location level; the bug had appeared in 0.1.29.
  4948. *) Bugfix: the ngx_http_ssl_module did not support the certificate
  4949. chain.
  4950. *) Bugfix: the ngx_http_autoindex_module did not show correctly the long
  4951. file names; the bug had appeared in 0.1.38.
  4952. *) Bugfixes in IMAP/POP3 proxy in interaction with a backend at the
  4953. login state.
  4954. Changes with nginx 0.1.38 08 Jul 2005
  4955. *) Feature: the "limit_rate" directive is supported in proxy and FastCGI
  4956. mode.
  4957. *) Feature: the "X-Accel-Limit-Rate" response header line is supported
  4958. in proxy and FastCGI mode.
  4959. *) Feature: the "break" directive.
  4960. *) Feature: the "log_not_found" directive.
  4961. *) Bugfix: the response status code was not changed when request was
  4962. redirected by the ""X-Accel-Redirect" header line.
  4963. *) Bugfix: the variables set by the "set" directive could not be used in
  4964. SSI.
  4965. *) Bugfix: the segmentation fault may occurred if the SSI page has more
  4966. than one remote subrequest.
  4967. *) Bugfix: nginx treated the backend response as invalid if the status
  4968. line in the header was transferred in two packets; the bug had
  4969. appeared in 0.1.29.
  4970. *) Feature: the "ssi_types" directive.
  4971. *) Feature: the "autoindex_exact_size" directive.
  4972. *) Bugfix: the ngx_http_autoindex_module did not support the long file
  4973. names in UTF-8.
  4974. *) Feature: the IMAP/POP3 proxy.
  4975. Changes with nginx 0.1.37 23 Jun 2005
  4976. *) Change: now the "\n" is added to the end of the "nginx.pid" file.
  4977. *) Bugfix: the responses may be transferred not completely, if many
  4978. parts or the big parts were included by SSI.
  4979. *) Bugfix: if all backends had returned the 404 response and the
  4980. "http_404" parameter of the "proxy_next_upstream" or
  4981. "fastcgi_next_upstream" directives was used, then nginx started to
  4982. request all backends again.
  4983. Changes with nginx 0.1.36 15 Jun 2005
  4984. *) Change: if the request header has duplicate the "Host", "Connection",
  4985. "Content-Length", or "Authorization" lines, then nginx now returns
  4986. the 400 error.
  4987. *) Change: the "post_accept_timeout" directive was canceled.
  4988. *) Feature: the "default", "af=", "bl=", "deferred", and "bind"
  4989. parameters of the "listen" directive.
  4990. *) Feature: the FreeBSD accept filters support.
  4991. *) Feature: the Linux TCP_DEFER_ACCEPT support.
  4992. *) Bugfix: the ngx_http_autoindex_module did not support the file names
  4993. in UTF-8.
  4994. *) Bugfix: the new log file can be rotated by the -USR1 signal only if
  4995. the reconfiguration by the -HUP signal was made twice.
  4996. Changes with nginx 0.1.35 07 Jun 2005
  4997. *) Feature: the "working_directory" directive.
  4998. *) Feature: the "port_in_redirect" directive.
  4999. *) Bugfix: the segmentation fault was occurred if the backend response
  5000. header was in several packets; the bug had appeared in 0.1.29.
  5001. *) Bugfix: if more than 10 servers were configured or some server did
  5002. not use the "listen" directive, then the segmentation fault was
  5003. occurred on the start.
  5004. *) Bugfix: the segmentation fault might occur if the response was bigger
  5005. than the temporary file.
  5006. *) Bugfix: nginx returned the 400 response on requests like
  5007. "GET http://www.domain.com/uri HTTP/1.0"; the bug had appeared in
  5008. 0.1.28.
  5009. Changes with nginx 0.1.34 26 May 2005
  5010. *) Bugfix: the worker process may got caught in an endless loop if the
  5011. big response part were include by SSI.
  5012. *) Bugfix: the variables set by the "set" directive were not available
  5013. in SSI.
  5014. *) Feature: the "autoindex_localtime" directive.
  5015. *) Bugfix: the empty value of the "proxy_set_header" directive forbids
  5016. the client request header line passing.
  5017. Changes with nginx 0.1.33 23 May 2005
  5018. *) Bugfix: nginx could not be built with the --without-pcre parameter;
  5019. the bug had appeared in 0.1.29.
  5020. *) Bugfix: 3, 4, 7, and 8 the "proxy_set_header" directives in one level
  5021. cause the bus fault on start up.
  5022. *) Bugfix: the HTTP protocol was specified in the HTTPS redirects.
  5023. *) Bugfix: if the "rewrite" directive used the captures inside the "if"
  5024. directive, then the 500 error code was returned.
  5025. Changes with nginx 0.1.32 19 May 2005
  5026. *) Bugfix: the arguments were omitted in the redirects, issued by the
  5027. "rewrite" directive; the bug had appeared in 0.1.29.
  5028. *) Feature: the "if" directive supports the captures in regular
  5029. expressions.
  5030. *) Feature: the "set" directive supports the variables and the captures
  5031. of regular expressions.
  5032. *) Feature: the "X-Accel-Redirect" response header line is supported in
  5033. proxy and FastCGI mode.
  5034. Changes with nginx 0.1.31 16 May 2005
  5035. *) Bugfix: the response encrypted by SSL may not transferred complete.
  5036. *) Bugfix: errors while processing FastCGI response by SSI.
  5037. *) Bugfix: errors while using SSI and gzipping.
  5038. *) Bugfix: the redirect with the 301 code was transferred without
  5039. response body; the bug had appeared in 0.1.30.
  5040. Changes with nginx 0.1.30 14 May 2005
  5041. *) Bugfix: the worker process may got caught in an endless loop if the
  5042. SSI was used.
  5043. *) Bugfix: the response encrypted by SSL may not transferred complete.
  5044. *) Bugfix: if the length of the response part received at once from
  5045. proxied or FastCGI server was equal to 500, then nginx returns the
  5046. 500 response code; in proxy mode the bug had appeared in 0.1.29 only.
  5047. *) Bugfix: nginx did not consider the directives with 8 or 9 parameters
  5048. as invalid.
  5049. *) Feature: the "return" directive can return the 204 response code.
  5050. *) Feature: the "ignore_invalid_headers" directive.
  5051. Changes with nginx 0.1.29 12 May 2005
  5052. *) Feature: the ngx_http_ssi_module supports "include virtual" command.
  5053. *) Feature: the ngx_http_ssi_module supports the condition command like
  5054. 'if expr="$NAME"' and "else" and "endif" commands. Only one nested
  5055. level is supported.
  5056. *) Feature: the ngx_http_ssi_module supports the DATE_LOCAL and DATE_GMT
  5057. variables and "config timefmt" command.
  5058. *) Feature: the "ssi_ignore_recycled_buffers" directive.
  5059. *) Bugfix: the "echo" command did not show the default value for the
  5060. empty QUERY_STRING variable.
  5061. *) Change: the ngx_http_proxy_module was rewritten.
  5062. *) Feature: the "proxy_redirect", "proxy_pass_request_headers",
  5063. "proxy_pass_request_body", and "proxy_method" directives.
  5064. *) Feature: the "proxy_set_header" directive. The "proxy_x_var" was
  5065. canceled and must be replaced with the proxy_set_header directive.
  5066. *) Change: the "proxy_preserve_host" is canceled and must be replaced
  5067. with the "proxy_set_header Host $host" and the "proxy_redirect off"
  5068. directives, the "proxy_set_header Host $host:$proxy_port" directive
  5069. and the appropriate proxy_redirect directives.
  5070. *) Change: the "proxy_set_x_real_ip" is canceled and must be replaced
  5071. with the "proxy_set_header X-Real-IP $remote_addr" directive.
  5072. *) Change: the "proxy_add_x_forwarded_for" is canceled and must be
  5073. replaced with
  5074. the "proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for"
  5075. directive.
  5076. *) Change: the "proxy_set_x_url" is canceled and must be replaced with
  5077. the "proxy_set_header X-URL http://$host:$server_port$request_uri"
  5078. directive.
  5079. *) Feature: the "fastcgi_param" directive.
  5080. *) Change: the "fastcgi_root", "fastcgi_set_var" and "fastcgi_params"
  5081. directive are canceled and must be replaced with the fastcgi_param
  5082. directives.
  5083. *) Feature: the "index" directive can use the variables.
  5084. *) Feature: the "index" directive can be used at http and server levels.
  5085. *) Change: the last index only in the "index" directive can be absolute.
  5086. *) Feature: the "rewrite" directive can use the variables.
  5087. *) Feature: the "internal" directive.
  5088. *) Feature: the CONTENT_LENGTH, CONTENT_TYPE, REMOTE_PORT, SERVER_ADDR,
  5089. SERVER_PORT, SERVER_PROTOCOL, DOCUMENT_ROOT, SERVER_NAME,
  5090. REQUEST_METHOD, REQUEST_URI, and REMOTE_USER variables.
  5091. *) Change: nginx now passes the invalid lines in a client request
  5092. headers or a backend response header.
  5093. *) Bugfix: if the backend did not transfer response for a long time and
  5094. the "send_timeout" was less than "proxy_read_timeout", then nginx
  5095. returned the 408 response.
  5096. *) Bugfix: the segmentation fault was occurred if the backend sent an
  5097. invalid line in response header; the bug had appeared in 0.1.26.
  5098. *) Bugfix: the segmentation fault may occurred in FastCGI fault
  5099. tolerance configuration.
  5100. *) Bugfix: the "expires" directive did not remove the previous "Expires"
  5101. and "Cache-Control" headers.
  5102. *) Bugfix: nginx did not take into account trailing dot in "Host" header
  5103. line.
  5104. *) Bugfix: the ngx_http_auth_module did not work under Linux.
  5105. *) Bugfix: the rewrite directive worked incorrectly, if the arguments
  5106. were in a request.
  5107. *) Bugfix: nginx could not be built on MacOS X.
  5108. Changes with nginx 0.1.28 08 Apr 2005
  5109. *) Bugfix: nginx hogs CPU while proxying the huge files.
  5110. *) Bugfix: nginx could not be built by gcc 4.0 on Linux.
  5111. Changes with nginx 0.1.27 28 Mar 2005
  5112. *) Feature: the "blocked" parameter of the "valid_referers" directive.
  5113. *) Change: the errors while handling the request header now logged at
  5114. "info" level. The server name and the "Host" and "Referer" header
  5115. lines also logged.
  5116. *) Change: the "Host" header line is also logged in error log.
  5117. *) Feature: the proxy_pass_unparsed_uri directive. The special handling
  5118. of the "://" symbols in URI, appeared in 0.1.11 version, now is
  5119. canceled.
  5120. *) Bugfix: nginx could not be built on FreeBSD and Linux, if the
  5121. --without-ngx_http_auth_basic_module configuration parameter was
  5122. used.
  5123. Changes with nginx 0.1.26 22 Mar 2005
  5124. *) Change: the invalid client header lines are now ignored and logged at
  5125. the info level.
  5126. *) Change: the server name is also logged in error log.
  5127. *) Feature: the ngx_http_auth_basic_module module and the auth_basic and
  5128. auth_basic_user_file directives.
  5129. Changes with nginx 0.1.25 19 Mar 2005
  5130. *) Bugfix: nginx did run on Linux parisc.
  5131. *) Feature: nginx now does not start under FreeBSD if the sysctl
  5132. kern.ipc.somaxconn value is too big.
  5133. *) Bugfix: if a request was internally redirected by the
  5134. ngx_http_index_module module to the ngx_http_proxy_module or
  5135. ngx_http_fastcgi_module modules, then the index file was not closed
  5136. after request completion.
  5137. *) Feature: the "proxy_pass" can be used in location with regular
  5138. expression.
  5139. *) Feature: the ngx_http_rewrite_filter_module module supports the
  5140. condition like "if ($HTTP_USER_AGENT ~ MSIE)".
  5141. *) Bugfix: nginx started too slow if the large number of addresses and
  5142. text values were used in the "geo" directive.
  5143. *) Change: a variable name must be declared as "$name" in the "geo"
  5144. directive. The previous variant without "$" is still supported, but
  5145. will be removed soon.
  5146. *) Feature: the "%{VARIABLE}v" logging parameter.
  5147. *) Feature: the "set $name value" directive.
  5148. *) Bugfix: gcc 4.0 compatibility.
  5149. *) Feature: the --with-openssl-opt=OPTIONS autoconfiguration directive.
  5150. Changes with nginx 0.1.24 04 Mar 2005
  5151. *) Feature: the ngx_http_ssi_filter_module supports the QUERY_STRING and
  5152. DOCUMENT_URI variables.
  5153. *) Bugfix: the ngx_http_autoindex_module may some times return the 404
  5154. response for existent directory, if this directory was used in
  5155. "alias" directive.
  5156. *) Bugfix: the ngx_http_ssi_filter_module ran incorrectly for large
  5157. responses.
  5158. *) Bugfix: the lack of the "Referer" header line was always accounted as
  5159. valid referrer.
  5160. Changes with nginx 0.1.23 01 Mar 2005
  5161. *) Feature: the ngx_http_ssi_filter_module and the ssi,
  5162. ssi_silent_errors, and ssi_min_file_chunk directives. The 'echo
  5163. var="HTTP_..." default=""' and 'echo var="REMOTE_ADDR"' commands are
  5164. supported.
  5165. *) Feature: the %request_time log parameter.
  5166. *) Feature: if the request has no the "Host" header line, then the
  5167. "proxy_preserve_host" directive set this header line to the first
  5168. server name of the "server_name" directive.
  5169. *) Bugfix: nginx could not be built on platforms different from i386,
  5170. amd64, sparc, and ppc; the bug had appeared in 0.1.22.
  5171. *) Bugfix: the ngx_http_autoindex_module now shows the information not
  5172. about the symlink, but about file or directory it points to.
  5173. *) Bugfix: the %apache_length parameter logged the negative length of
  5174. the response header if the no response was transferred to a client.
  5175. Changes with nginx 0.1.22 22 Feb 2005
  5176. *) Bugfix: the ngx_http_stub_status_module showed incorrect handled
  5177. connections statistics if the proxying or FastCGI server were used.
  5178. *) Bugfix: the installation paths were incorrectly quoted on Linux and
  5179. Solaris; the bug had appeared in 0.1.21.
  5180. Changes with nginx 0.1.21 22 Feb 2005
  5181. *) Bugfix: the ngx_http_stub_status_module showed incorrect statistics
  5182. if "rtsig" method was used or if several worker process ran on SMP.
  5183. *) Bugfix: nginx could not be built by the icc compiler on Linux or if
  5184. the zlib-1.2.x library was building from sources.
  5185. *) Bugfix: nginx could not be built on NetBSD 2.0.
  5186. Changes with nginx 0.1.20 17 Feb 2005
  5187. *) Feature: the new "script_filename" and "remote_port" parameters of
  5188. the fastcgi_params directive.
  5189. *) Bugfix: the FastCGI stderr stream was handled incorrectly.
  5190. Changes with nginx 0.1.19 16 Feb 2005
  5191. *) Bugfix: now, if request contains the zero, then the 404 error is
  5192. returned for the local requests.
  5193. *) Bugfix: nginx could not be built on NetBSD 2.0.
  5194. *) Bugfix: the timeout may occur while reading of the client request
  5195. body via SSL connections.
  5196. Changes with nginx 0.1.18 09 Feb 2005
  5197. *) Workaround: the default values of the devpoll_events and the
  5198. devpoll_changes directives changed from 512 to 32 to be compatible
  5199. with Solaris 10.
  5200. *) Bugfix: the proxy_set_x_var and fastcgi_set_var directives were not
  5201. inherited.
  5202. *) Bugfix: in a redirect rewrite directive arguments were concatenated
  5203. with URI by an "&" rather than a "?".
  5204. *) Bugfix: the lines without trailing ";" in the file being included by
  5205. the ngx_http_geo_module were silently ignored.
  5206. *) Feature: the ngx_http_stub_status_module.
  5207. *) Bugfix: the unknown log format in the access_log directive caused the
  5208. segmentation fault.
  5209. *) Feature: the new "document_root" parameter of the fastcgi_params
  5210. directive.
  5211. *) Feature: the fastcgi_redirect_errors directive.
  5212. *) Feature: the new "break" modifier of the "rewrite" directive allows
  5213. to stop the rewrite/location cycle and sets the current configuration
  5214. to the request.
  5215. Changes with nginx 0.1.17 03 Feb 2005
  5216. *) Change: the ngx_http_rewrite_module was rewritten from the scratch.
  5217. Now it is possible to redirect, to return the error codes, to check
  5218. the variables and referrers. The directives can be used inside
  5219. locations. The redirect directive was canceled.
  5220. *) Feature: the ngx_http_geo_module.
  5221. *) Feature: the proxy_set_x_var and fastcgi_set_var directives.
  5222. *) Bugfix: the location configuration with "=" modifier may be used in
  5223. another location.
  5224. *) Bugfix: the correct content type was set only for requests that use
  5225. small caps letters in extension.
  5226. *) Bugfix: if the proxy_pass or fastcgi_pass directives were set in the
  5227. location, and access was denied, and the error was redirected to a
  5228. static page, then the segmentation fault occurred.
  5229. *) Bugfix: if in a proxied "Location" header was a relative URL, then a
  5230. host name and a slash were added to them; the bug had appeared in
  5231. 0.1.14.
  5232. *) Bugfix: the system error message was not logged on Linux.
  5233. Changes with nginx 0.1.16 25 Jan 2005
  5234. *) Bugfix: if the response were transferred by chunks, then on the HEAD
  5235. request the final chunk was issued.
  5236. *) Bugfix: the "Connection: keep-alive" header were issued, even if the
  5237. keepalive_timeout directive forbade the keep-alive use.
  5238. *) Bugfix: the errors in the ngx_http_fastcgi_module caused the
  5239. segmentation faults.
  5240. *) Bugfix: the compressed response encrypted by SSL may not transferred
  5241. complete.
  5242. *) Bugfix: the TCP-specific TCP_NODELAY, TCP_NOPUSH, and TCP_CORK
  5243. options, are not used for the unix domain sockets.
  5244. *) Feature: the rewrite directive supports the arguments rewriting.
  5245. *) Bugfix: the response code 400 was returned for the POST request with
  5246. the "Content-Length: 0" header; the bug had appeared in 0.1.14.
  5247. Changes with nginx 0.1.15 19 Jan 2005
  5248. *) Bugfix: the error while the connecting to the FastCGI server caused
  5249. segmentation fault.
  5250. *) Bugfix: the correct handling of the regular expression, that has
  5251. different number of the captures and substitutions.
  5252. *) Feature: the location, that is passed to the FastCGI server, can be
  5253. regular expression.
  5254. *) Bugfix: the FastCGI's parameter REQUEST_URI is now passed with the
  5255. arguments and in the original state.
  5256. *) Bugfix: the ngx_http_rewrite_module module was required to be built
  5257. to use the regular expressions in locations.
  5258. *) Bugfix: the directive "proxy_preserve_host on" adds port 80 to the
  5259. "Host" headers, if upstream listen on port 80; the bug had appeared
  5260. in 0.1.14.
  5261. *) Bugfix: the same paths in autoconfiguration parameters
  5262. --http-client-body-temp-path=PATH and --http-proxy-temp-path=PATH, or
  5263. --http-client-body-temp-path=PATH and --http-fastcgi-temp-path=PATH
  5264. caused segmentation fault.
  5265. Changes with nginx 0.1.14 18 Jan 2005
  5266. *) Feature: the autoconfiguration directives:
  5267. --http-client-body-temp-path=PATH, --http-proxy-temp-path=PATH, and
  5268. --http-fastcgi-temp-path=PATH
  5269. *) Change: the directory name for the temporary files with the client
  5270. request body is specified by directive client_body_temp_path, by
  5271. default it is <prefix>/client_body_temp.
  5272. *) Feature: the ngx_http_fastcgi_module and the directives:
  5273. fastcgi_pass, fastcgi_root, fastcgi_index, fastcgi_params,
  5274. fastcgi_connect_timeout, fastcgi_send_timeout, fastcgi_read_timeout,
  5275. fastcgi_send_lowat, fastcgi_header_buffer_size, fastcgi_buffers,
  5276. fastcgi_busy_buffers_size, fastcgi_temp_path,
  5277. fastcgi_max_temp_file_size, fastcgi_temp_file_write_size,
  5278. fastcgi_next_upstream, and fastcgi_x_powered_by.
  5279. *) Bugfix: the "[alert] zero size buf" error; the bug had appeared in
  5280. 0.1.3.
  5281. *) Change: the URI must be specified after the host name in the
  5282. proxy_pass directive.
  5283. *) Change: the %3F symbol in the URI was considered as the argument
  5284. string start.
  5285. *) Feature: the unix domain sockets support in the
  5286. ngx_http_proxy_module.
  5287. *) Feature: the ssl_engine and ssl_ciphers directives.
  5288. Thanks to Sergey Skvortsov for SSL-accelerator.
  5289. Changes with nginx 0.1.13 21 Dec 2004
  5290. *) Feature: the server_names_hash and server_names_hash_threshold
  5291. directives.
  5292. *) Bugfix: the *.domain.tld names in the "server_name" directive did not
  5293. work.
  5294. *) Bugfix: the %request_length log parameter logged the incorrect
  5295. length.
  5296. Changes with nginx 0.1.12 06 Dec 2004
  5297. *) Feature: the %request_length log parameter.
  5298. *) Bugfix: when using the /dev/poll, select and poll on the platforms,
  5299. where these methods may do the false reports, there may be the long
  5300. delay when the request was passed via the keep-alive connection. It
  5301. may be at least on Solaris when using the /dev/poll.
  5302. *) Bugfix: the send_lowat directive is ignored on Linux because Linux
  5303. does not support the SO_SNDLOWAT option.
  5304. Changes with nginx 0.1.11 02 Dec 2004
  5305. *) Feature: the worker_priority directive.
  5306. *) Change: both tcp_nopush and tcp_nodelay directives affect the
  5307. transferred response.
  5308. *) Bugfix: nginx did not call initgroups().
  5309. Thanks to Andrew Sitnikov and Andrei Nigmatulin.
  5310. *) Change: now the ngx_http_autoindex_module shows the file size in the
  5311. bytes.
  5312. *) Bugfix: the ngx_http_autoindex_module returned the 500 error if the
  5313. broken symlink was in a directory.
  5314. *) Bugfix: the files bigger than 4G could not be transferred using
  5315. sendfile.
  5316. *) Bugfix: if the backend was resolved to several backends and there was
  5317. an error while the response waiting then process may got caught in an
  5318. endless loop.
  5319. *) Bugfix: the worker process may exit with the "unknown cycle" message
  5320. when the /dev/poll method was used.
  5321. *) Bugfix: "close() channel failed" errors.
  5322. *) Bugfix: the autodetection of the "nobody" and "nogroup" groups.
  5323. *) Bugfix: the send_lowat directive did not work on Linux.
  5324. *) Bugfix: the segmentation fault occurred if there was no events
  5325. section in configuration.
  5326. *) Bugfix: nginx could not be built on OpenBSD.
  5327. *) Bugfix: the double slashes in "://" in the URI were converted to
  5328. ":/".
  5329. Changes with nginx 0.1.10 26 Nov 2004
  5330. *) Bugfix: if the request without arguments contains "//", "/./", "/../"
  5331. or "%XX" then the last character in the request line was lost; the
  5332. bug had appeared in 0.1.9.
  5333. *) Bugfix: the fix in 0.1.9 for the files bigger than 2G on Linux did
  5334. not work.
  5335. Changes with nginx 0.1.9 25 Nov 2004
  5336. *) Bugfix: the proxied request was sent without arguments if the request
  5337. contains "//", "/./", "/../" or "%XX".
  5338. *) Bugfix: the large compressed responses may be transferred not
  5339. completely.
  5340. *) Bugfix: the files bigger than 2G was not transferred on Linux that
  5341. does not support sendfile64().
  5342. *) Bugfix: while the build configuration on Linux the --with-poll_module
  5343. parameter was required; the bug had appeared in 0.1.8.
  5344. Changes with nginx 0.1.8 20 Nov 2004
  5345. *) Bugfix: in the ngx_http_autoindex_module if the long file names were
  5346. in the listing.
  5347. *) Feature: the "^~" modifier in the location directive.
  5348. *) Feature: the proxy_max_temp_file_size directive.
  5349. Changes with nginx 0.1.7 12 Nov 2004
  5350. *) Bugfix: on FreeBSD the segmentation fault may occur if the size of
  5351. the transferred file was changed; the bug had appeared in 0.1.5.
  5352. Changes with nginx 0.1.6 11 Nov 2004
  5353. *) Bugfix: some location directive combinations with the regular
  5354. expressions caused the wrong configuration choose.
  5355. Changes with nginx 0.1.5 11 Nov 2004
  5356. *) Bugfix: on Solaris and Linux there may be too many "recvmsg()
  5357. returned not enough data" alerts.
  5358. *) Bugfix: there were the "writev() failed (22: Invalid argument)"
  5359. errors on Solaris in proxy mode without sendfile. On other platforms
  5360. that do not support sendfile at all the process got caught in an
  5361. endless loop.
  5362. *) Bugfix: segmentation fault on Solaris in proxy mode and using
  5363. sendfile.
  5364. *) Bugfix: segmentation fault on Solaris.
  5365. *) Bugfix: on-line upgrade did not work on Linux.
  5366. *) Bugfix: the ngx_http_autoindex_module module did not escape the
  5367. spaces, the quotes, and the percent signs in the directory listing.
  5368. *) Change: the decrease of the copy operations.
  5369. *) Feature: the userid_p3p directive.
  5370. Changes with nginx 0.1.4 26 Oct 2004
  5371. *) Bugfix: in the ngx_http_autoindex_module.
  5372. Changes with nginx 0.1.3 25 Oct 2004
  5373. *) Feature: the ngx_http_autoindex_module and the autoindex directive.
  5374. *) Feature: the proxy_set_x_url directive.
  5375. *) Bugfix: proxy module may get caught in an endless loop when sendfile
  5376. is not used.
  5377. Changes with nginx 0.1.2 21 Oct 2004
  5378. *) Feature: the --user=USER, --group=GROUP, and --with-ld-opt=OPTIONS
  5379. options in configure.
  5380. *) Feature: the server_name directive supports *.domain.tld.
  5381. *) Bugfix: the portability improvements.
  5382. *) Bugfix: if configuration file was set in command line, the
  5383. reconfiguration was impossible; the bug had appeared in 0.1.1.
  5384. *) Bugfix: proxy module may get caught in an endless loop when sendfile
  5385. is not used.
  5386. *) Bugfix: with sendfile the response was not recoded according to the
  5387. charset module directives; the bug had appeared in 0.1.1.
  5388. *) Bugfix: very seldom bug in the kqueue processing.
  5389. *) Bugfix: the gzip module compressed the proxied responses that was
  5390. already compressed.
  5391. Changes with nginx 0.1.1 11 Oct 2004
  5392. *) Feature: the gzip_types directive.
  5393. *) Feature: the tcp_nodelay directive.
  5394. *) Feature: the send_lowat directive is working not only on OSes that
  5395. support kqueue NOTE_LOWAT, but also on OSes that support SO_SNDLOWAT.
  5396. *) Feature: the setproctitle() emulation for Linux and Solaris.
  5397. *) Bugfix: the "Location" header rewrite bug fixed while the proxying.
  5398. *) Bugfix: the ngx_http_chunked_module module may get caught in an
  5399. endless loop.
  5400. *) Bugfix: the /dev/poll module bugs fixed.
  5401. *) Bugfix: the responses were corrupted when the temporary files were
  5402. used while the proxying.
  5403. *) Bugfix: the unescaped requests were passed to the backend.
  5404. *) Bugfix: while the build configuration on Linux 2.4 the
  5405. --with-poll_module parameter was required.
  5406. Changes with nginx 0.1.0 04 Oct 2004
  5407. *) The first public version.