CHANGES 258 KB

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