nginx_directives.json 110 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888
  1. {
  2. "absolute_redirect": {
  3. "links": [
  4. "https://nginx.org/en/docs/http/ngx_http_core_module.html#absolute_redirect"
  5. ]
  6. },
  7. "accept_mutex": {
  8. "links": [
  9. "https://nginx.org/en/docs/ngx_core_module.html#accept_mutex"
  10. ]
  11. },
  12. "accept_mutex_delay": {
  13. "links": [
  14. "https://nginx.org/en/docs/ngx_core_module.html#accept_mutex_delay"
  15. ]
  16. },
  17. "accept_terms_of_service": {
  18. "links": [
  19. "https://nginx.org/en/docs/http/ngx_http_acme_module.html#accept_terms_of_service"
  20. ]
  21. },
  22. "access_log": {
  23. "links": [
  24. "https://nginx.org/en/docs/http/ngx_http_log_module.html#access_log",
  25. "https://nginx.org/en/docs/stream/ngx_stream_log_module.html#access_log"
  26. ]
  27. },
  28. "account_key": {
  29. "links": [
  30. "https://nginx.org/en/docs/http/ngx_http_acme_module.html#account_key"
  31. ]
  32. },
  33. "acme_certificate": {
  34. "links": [
  35. "https://nginx.org/en/docs/http/ngx_http_acme_module.html#acme_certificate"
  36. ]
  37. },
  38. "acme_issuer": {
  39. "links": [
  40. "https://nginx.org/en/docs/http/ngx_http_acme_module.html#acme_issuer"
  41. ]
  42. },
  43. "acme_shared_zone": {
  44. "links": [
  45. "https://nginx.org/en/docs/http/ngx_http_acme_module.html#acme_shared_zone"
  46. ]
  47. },
  48. "add_after_body": {
  49. "links": [
  50. "https://nginx.org/en/docs/http/ngx_http_addition_module.html#add_after_body"
  51. ]
  52. },
  53. "add_before_body": {
  54. "links": [
  55. "https://nginx.org/en/docs/http/ngx_http_addition_module.html#add_before_body"
  56. ]
  57. },
  58. "add_header": {
  59. "links": [
  60. "https://nginx.org/en/docs/http/ngx_http_headers_module.html#add_header"
  61. ]
  62. },
  63. "add_trailer": {
  64. "links": [
  65. "https://nginx.org/en/docs/http/ngx_http_headers_module.html#add_trailer"
  66. ]
  67. },
  68. "addition_types": {
  69. "links": [
  70. "https://nginx.org/en/docs/http/ngx_http_addition_module.html#addition_types"
  71. ]
  72. },
  73. "aio": {
  74. "links": [
  75. "https://nginx.org/en/docs/http/ngx_http_core_module.html#aio"
  76. ]
  77. },
  78. "aio_write": {
  79. "links": [
  80. "https://nginx.org/en/docs/http/ngx_http_core_module.html#aio_write"
  81. ]
  82. },
  83. "alias": {
  84. "links": [
  85. "https://nginx.org/en/docs/http/ngx_http_core_module.html#alias"
  86. ]
  87. },
  88. "allow": {
  89. "links": [
  90. "https://nginx.org/en/docs/http/ngx_http_access_module.html#allow",
  91. "https://nginx.org/en/docs/stream/ngx_stream_access_module.html#allow"
  92. ]
  93. },
  94. "ancient_browser": {
  95. "links": [
  96. "https://nginx.org/en/docs/http/ngx_http_browser_module.html#ancient_browser"
  97. ]
  98. },
  99. "ancient_browser_value": {
  100. "links": [
  101. "https://nginx.org/en/docs/http/ngx_http_browser_module.html#ancient_browser_value"
  102. ]
  103. },
  104. "api": {
  105. "links": [
  106. "https://nginx.org/en/docs/http/ngx_http_api_module.html#api"
  107. ]
  108. },
  109. "auth_basic": {
  110. "links": [
  111. "https://nginx.org/en/docs/http/ngx_http_auth_basic_module.html#auth_basic"
  112. ]
  113. },
  114. "auth_basic_user_file": {
  115. "links": [
  116. "https://nginx.org/en/docs/http/ngx_http_auth_basic_module.html#auth_basic_user_file"
  117. ]
  118. },
  119. "auth_delay": {
  120. "links": [
  121. "https://nginx.org/en/docs/http/ngx_http_core_module.html#auth_delay"
  122. ]
  123. },
  124. "auth_http": {
  125. "links": [
  126. "https://nginx.org/en/docs/mail/ngx_mail_auth_http_module.html#auth_http"
  127. ]
  128. },
  129. "auth_http_header": {
  130. "links": [
  131. "https://nginx.org/en/docs/mail/ngx_mail_auth_http_module.html#auth_http_header"
  132. ]
  133. },
  134. "auth_http_pass_client_cert": {
  135. "links": [
  136. "https://nginx.org/en/docs/mail/ngx_mail_auth_http_module.html#auth_http_pass_client_cert"
  137. ]
  138. },
  139. "auth_http_timeout": {
  140. "links": [
  141. "https://nginx.org/en/docs/mail/ngx_mail_auth_http_module.html#auth_http_timeout"
  142. ]
  143. },
  144. "auth_jwt": {
  145. "links": [
  146. "https://nginx.org/en/docs/http/ngx_http_auth_jwt_module.html#auth_jwt"
  147. ]
  148. },
  149. "auth_jwt_claim_set": {
  150. "links": [
  151. "https://nginx.org/en/docs/http/ngx_http_auth_jwt_module.html#auth_jwt_claim_set"
  152. ]
  153. },
  154. "auth_jwt_header_set": {
  155. "links": [
  156. "https://nginx.org/en/docs/http/ngx_http_auth_jwt_module.html#auth_jwt_header_set"
  157. ]
  158. },
  159. "auth_jwt_key_cache": {
  160. "links": [
  161. "https://nginx.org/en/docs/http/ngx_http_auth_jwt_module.html#auth_jwt_key_cache"
  162. ]
  163. },
  164. "auth_jwt_key_file": {
  165. "links": [
  166. "https://nginx.org/en/docs/http/ngx_http_auth_jwt_module.html#auth_jwt_key_file"
  167. ]
  168. },
  169. "auth_jwt_key_request": {
  170. "links": [
  171. "https://nginx.org/en/docs/http/ngx_http_auth_jwt_module.html#auth_jwt_key_request"
  172. ]
  173. },
  174. "auth_jwt_leeway": {
  175. "links": [
  176. "https://nginx.org/en/docs/http/ngx_http_auth_jwt_module.html#auth_jwt_leeway"
  177. ]
  178. },
  179. "auth_jwt_require": {
  180. "links": [
  181. "https://nginx.org/en/docs/http/ngx_http_auth_jwt_module.html#auth_jwt_require"
  182. ]
  183. },
  184. "auth_jwt_type": {
  185. "links": [
  186. "https://nginx.org/en/docs/http/ngx_http_auth_jwt_module.html#auth_jwt_type"
  187. ]
  188. },
  189. "auth_oidc": {
  190. "links": [
  191. "https://nginx.org/en/docs/http/ngx_http_oidc_module.html#auth_oidc"
  192. ]
  193. },
  194. "auth_request": {
  195. "links": [
  196. "https://nginx.org/en/docs/http/ngx_http_auth_request_module.html#auth_request"
  197. ]
  198. },
  199. "auth_request_set": {
  200. "links": [
  201. "https://nginx.org/en/docs/http/ngx_http_auth_request_module.html#auth_request_set"
  202. ]
  203. },
  204. "auth_require": {
  205. "links": [
  206. "https://nginx.org/en/docs/http/ngx_http_auth_require_module.html#auth_require"
  207. ]
  208. },
  209. "autoindex": {
  210. "links": [
  211. "https://nginx.org/en/docs/http/ngx_http_autoindex_module.html#autoindex"
  212. ]
  213. },
  214. "autoindex_exact_size": {
  215. "links": [
  216. "https://nginx.org/en/docs/http/ngx_http_autoindex_module.html#autoindex_exact_size"
  217. ]
  218. },
  219. "autoindex_format": {
  220. "links": [
  221. "https://nginx.org/en/docs/http/ngx_http_autoindex_module.html#autoindex_format"
  222. ]
  223. },
  224. "autoindex_localtime": {
  225. "links": [
  226. "https://nginx.org/en/docs/http/ngx_http_autoindex_module.html#autoindex_localtime"
  227. ]
  228. },
  229. "break": {
  230. "links": [
  231. "https://nginx.org/en/docs/http/ngx_http_rewrite_module.html#break"
  232. ]
  233. },
  234. "charset": {
  235. "links": [
  236. "https://nginx.org/en/docs/http/ngx_http_charset_module.html#charset"
  237. ]
  238. },
  239. "charset_map": {
  240. "links": [
  241. "https://nginx.org/en/docs/http/ngx_http_charset_module.html#charset_map"
  242. ]
  243. },
  244. "charset_types": {
  245. "links": [
  246. "https://nginx.org/en/docs/http/ngx_http_charset_module.html#charset_types"
  247. ]
  248. },
  249. "chunked_transfer_encoding": {
  250. "links": [
  251. "https://nginx.org/en/docs/http/ngx_http_core_module.html#chunked_transfer_encoding"
  252. ]
  253. },
  254. "client_body_buffer_size": {
  255. "links": [
  256. "https://nginx.org/en/docs/http/ngx_http_core_module.html#client_body_buffer_size"
  257. ]
  258. },
  259. "client_body_in_file_only": {
  260. "links": [
  261. "https://nginx.org/en/docs/http/ngx_http_core_module.html#client_body_in_file_only"
  262. ]
  263. },
  264. "client_body_in_single_buffer": {
  265. "links": [
  266. "https://nginx.org/en/docs/http/ngx_http_core_module.html#client_body_in_single_buffer"
  267. ]
  268. },
  269. "client_body_temp_path": {
  270. "links": [
  271. "https://nginx.org/en/docs/http/ngx_http_core_module.html#client_body_temp_path"
  272. ]
  273. },
  274. "client_body_timeout": {
  275. "links": [
  276. "https://nginx.org/en/docs/http/ngx_http_core_module.html#client_body_timeout"
  277. ]
  278. },
  279. "client_header_buffer_size": {
  280. "links": [
  281. "https://nginx.org/en/docs/http/ngx_http_core_module.html#client_header_buffer_size"
  282. ]
  283. },
  284. "client_header_timeout": {
  285. "links": [
  286. "https://nginx.org/en/docs/http/ngx_http_core_module.html#client_header_timeout"
  287. ]
  288. },
  289. "client_id": {
  290. "links": [
  291. "https://nginx.org/en/docs/http/ngx_http_oidc_module.html#client_id"
  292. ]
  293. },
  294. "client_max_body_size": {
  295. "links": [
  296. "https://nginx.org/en/docs/http/ngx_http_core_module.html#client_max_body_size"
  297. ]
  298. },
  299. "client_secret": {
  300. "links": [
  301. "https://nginx.org/en/docs/http/ngx_http_oidc_module.html#client_secret"
  302. ]
  303. },
  304. "config_url": {
  305. "links": [
  306. "https://nginx.org/en/docs/http/ngx_http_oidc_module.html#config_url"
  307. ]
  308. },
  309. "connection_pool_size": {
  310. "links": [
  311. "https://nginx.org/en/docs/http/ngx_http_core_module.html#connection_pool_size"
  312. ]
  313. },
  314. "contact": {
  315. "links": [
  316. "https://nginx.org/en/docs/http/ngx_http_acme_module.html#contact"
  317. ]
  318. },
  319. "cookie_name": {
  320. "links": [
  321. "https://nginx.org/en/docs/http/ngx_http_oidc_module.html#cookie_name"
  322. ]
  323. },
  324. "create_full_put_path": {
  325. "links": [
  326. "https://nginx.org/en/docs/http/ngx_http_dav_module.html#create_full_put_path"
  327. ]
  328. },
  329. "daemon": {
  330. "links": [
  331. "https://nginx.org/en/docs/ngx_core_module.html#daemon"
  332. ]
  333. },
  334. "dav_access": {
  335. "links": [
  336. "https://nginx.org/en/docs/http/ngx_http_dav_module.html#dav_access"
  337. ]
  338. },
  339. "dav_methods": {
  340. "links": [
  341. "https://nginx.org/en/docs/http/ngx_http_dav_module.html#dav_methods"
  342. ]
  343. },
  344. "debug_connection": {
  345. "links": [
  346. "https://nginx.org/en/docs/ngx_core_module.html#debug_connection"
  347. ]
  348. },
  349. "debug_points": {
  350. "links": [
  351. "https://nginx.org/en/docs/ngx_core_module.html#debug_points"
  352. ]
  353. },
  354. "default_type": {
  355. "links": [
  356. "https://nginx.org/en/docs/http/ngx_http_core_module.html#default_type"
  357. ]
  358. },
  359. "deny": {
  360. "links": [
  361. "https://nginx.org/en/docs/http/ngx_http_access_module.html#deny",
  362. "https://nginx.org/en/docs/stream/ngx_stream_access_module.html#deny"
  363. ]
  364. },
  365. "directio": {
  366. "links": [
  367. "https://nginx.org/en/docs/http/ngx_http_core_module.html#directio"
  368. ]
  369. },
  370. "directio_alignment": {
  371. "links": [
  372. "https://nginx.org/en/docs/http/ngx_http_core_module.html#directio_alignment"
  373. ]
  374. },
  375. "disable_symlinks": {
  376. "links": [
  377. "https://nginx.org/en/docs/http/ngx_http_core_module.html#disable_symlinks"
  378. ]
  379. },
  380. "early_hints": {
  381. "links": [
  382. "https://nginx.org/en/docs/http/ngx_http_core_module.html#early_hints"
  383. ]
  384. },
  385. "empty_gif": {
  386. "links": [
  387. "https://nginx.org/en/docs/http/ngx_http_empty_gif_module.html#empty_gif"
  388. ]
  389. },
  390. "enforce_initial_report": {
  391. "links": [
  392. "https://nginx.org/en/docs/ngx_mgmt_module.html#enforce_initial_report"
  393. ]
  394. },
  395. "env": {
  396. "links": [
  397. "https://nginx.org/en/docs/ngx_core_module.html#env"
  398. ]
  399. },
  400. "error_log": {
  401. "links": [
  402. "https://nginx.org/en/docs/ngx_core_module.html#error_log"
  403. ]
  404. },
  405. "error_page": {
  406. "links": [
  407. "https://nginx.org/en/docs/http/ngx_http_core_module.html#error_page"
  408. ]
  409. },
  410. "etag": {
  411. "links": [
  412. "https://nginx.org/en/docs/http/ngx_http_core_module.html#etag"
  413. ]
  414. },
  415. "events": {
  416. "links": [
  417. "https://nginx.org/en/docs/ngx_core_module.html#events"
  418. ]
  419. },
  420. "expires": {
  421. "links": [
  422. "https://nginx.org/en/docs/http/ngx_http_headers_module.html#expires"
  423. ]
  424. },
  425. "extra_auth_args": {
  426. "links": [
  427. "https://nginx.org/en/docs/http/ngx_http_oidc_module.html#extra_auth_args"
  428. ]
  429. },
  430. "f4f": {
  431. "links": [
  432. "https://nginx.org/en/docs/http/ngx_http_f4f_module.html#f4f"
  433. ]
  434. },
  435. "f4f_buffer_size": {
  436. "links": [
  437. "https://nginx.org/en/docs/http/ngx_http_f4f_module.html#f4f_buffer_size"
  438. ]
  439. },
  440. "fastcgi_bind": {
  441. "links": [
  442. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_bind"
  443. ]
  444. },
  445. "fastcgi_buffer_size": {
  446. "links": [
  447. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_buffer_size"
  448. ]
  449. },
  450. "fastcgi_buffering": {
  451. "links": [
  452. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_buffering"
  453. ]
  454. },
  455. "fastcgi_buffers": {
  456. "links": [
  457. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_buffers"
  458. ]
  459. },
  460. "fastcgi_busy_buffers_size": {
  461. "links": [
  462. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_busy_buffers_size"
  463. ]
  464. },
  465. "fastcgi_cache": {
  466. "links": [
  467. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_cache"
  468. ]
  469. },
  470. "fastcgi_cache_background_update": {
  471. "links": [
  472. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_cache_background_update"
  473. ]
  474. },
  475. "fastcgi_cache_bypass": {
  476. "links": [
  477. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_cache_bypass"
  478. ]
  479. },
  480. "fastcgi_cache_key": {
  481. "links": [
  482. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_cache_key"
  483. ]
  484. },
  485. "fastcgi_cache_lock": {
  486. "links": [
  487. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_cache_lock"
  488. ]
  489. },
  490. "fastcgi_cache_lock_age": {
  491. "links": [
  492. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_cache_lock_age"
  493. ]
  494. },
  495. "fastcgi_cache_lock_timeout": {
  496. "links": [
  497. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_cache_lock_timeout"
  498. ]
  499. },
  500. "fastcgi_cache_max_range_offset": {
  501. "links": [
  502. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_cache_max_range_offset"
  503. ]
  504. },
  505. "fastcgi_cache_methods": {
  506. "links": [
  507. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_cache_methods"
  508. ]
  509. },
  510. "fastcgi_cache_min_uses": {
  511. "links": [
  512. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_cache_min_uses"
  513. ]
  514. },
  515. "fastcgi_cache_path": {
  516. "links": [
  517. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_cache_path"
  518. ]
  519. },
  520. "fastcgi_cache_purge": {
  521. "links": [
  522. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_cache_purge"
  523. ]
  524. },
  525. "fastcgi_cache_revalidate": {
  526. "links": [
  527. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_cache_revalidate"
  528. ]
  529. },
  530. "fastcgi_cache_use_stale": {
  531. "links": [
  532. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_cache_use_stale"
  533. ]
  534. },
  535. "fastcgi_cache_valid": {
  536. "links": [
  537. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_cache_valid"
  538. ]
  539. },
  540. "fastcgi_catch_stderr": {
  541. "links": [
  542. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_catch_stderr"
  543. ]
  544. },
  545. "fastcgi_connect_timeout": {
  546. "links": [
  547. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_connect_timeout"
  548. ]
  549. },
  550. "fastcgi_force_ranges": {
  551. "links": [
  552. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_force_ranges"
  553. ]
  554. },
  555. "fastcgi_hide_header": {
  556. "links": [
  557. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_hide_header"
  558. ]
  559. },
  560. "fastcgi_ignore_client_abort": {
  561. "links": [
  562. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_ignore_client_abort"
  563. ]
  564. },
  565. "fastcgi_ignore_headers": {
  566. "links": [
  567. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_ignore_headers"
  568. ]
  569. },
  570. "fastcgi_index": {
  571. "links": [
  572. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_index"
  573. ]
  574. },
  575. "fastcgi_intercept_errors": {
  576. "links": [
  577. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_intercept_errors"
  578. ]
  579. },
  580. "fastcgi_keep_conn": {
  581. "links": [
  582. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_keep_conn"
  583. ]
  584. },
  585. "fastcgi_limit_rate": {
  586. "links": [
  587. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_limit_rate"
  588. ]
  589. },
  590. "fastcgi_max_temp_file_size": {
  591. "links": [
  592. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_max_temp_file_size"
  593. ]
  594. },
  595. "fastcgi_next_upstream": {
  596. "links": [
  597. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_next_upstream"
  598. ]
  599. },
  600. "fastcgi_next_upstream_timeout": {
  601. "links": [
  602. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_next_upstream_timeout"
  603. ]
  604. },
  605. "fastcgi_next_upstream_tries": {
  606. "links": [
  607. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_next_upstream_tries"
  608. ]
  609. },
  610. "fastcgi_no_cache": {
  611. "links": [
  612. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_no_cache"
  613. ]
  614. },
  615. "fastcgi_param": {
  616. "links": [
  617. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_param"
  618. ]
  619. },
  620. "fastcgi_pass": {
  621. "links": [
  622. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_pass"
  623. ]
  624. },
  625. "fastcgi_pass_header": {
  626. "links": [
  627. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_pass_header"
  628. ]
  629. },
  630. "fastcgi_pass_request_body": {
  631. "links": [
  632. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_pass_request_body"
  633. ]
  634. },
  635. "fastcgi_pass_request_headers": {
  636. "links": [
  637. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_pass_request_headers"
  638. ]
  639. },
  640. "fastcgi_read_timeout": {
  641. "links": [
  642. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_read_timeout"
  643. ]
  644. },
  645. "fastcgi_request_buffering": {
  646. "links": [
  647. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_request_buffering"
  648. ]
  649. },
  650. "fastcgi_send_lowat": {
  651. "links": [
  652. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_send_lowat"
  653. ]
  654. },
  655. "fastcgi_send_timeout": {
  656. "links": [
  657. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_send_timeout"
  658. ]
  659. },
  660. "fastcgi_socket_keepalive": {
  661. "links": [
  662. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_socket_keepalive"
  663. ]
  664. },
  665. "fastcgi_split_path_info": {
  666. "links": [
  667. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_split_path_info"
  668. ]
  669. },
  670. "fastcgi_store": {
  671. "links": [
  672. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_store"
  673. ]
  674. },
  675. "fastcgi_store_access": {
  676. "links": [
  677. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_store_access"
  678. ]
  679. },
  680. "fastcgi_temp_file_write_size": {
  681. "links": [
  682. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_temp_file_write_size"
  683. ]
  684. },
  685. "fastcgi_temp_path": {
  686. "links": [
  687. "https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_temp_path"
  688. ]
  689. },
  690. "flv": {
  691. "links": [
  692. "https://nginx.org/en/docs/http/ngx_http_flv_module.html#flv"
  693. ]
  694. },
  695. "geo": {
  696. "links": [
  697. "https://nginx.org/en/docs/http/ngx_http_geo_module.html#geo",
  698. "https://nginx.org/en/docs/stream/ngx_stream_geo_module.html#geo"
  699. ]
  700. },
  701. "geoip_city": {
  702. "links": [
  703. "https://nginx.org/en/docs/http/ngx_http_geoip_module.html#geoip_city",
  704. "https://nginx.org/en/docs/stream/ngx_stream_geoip_module.html#geoip_city"
  705. ]
  706. },
  707. "geoip_country": {
  708. "links": [
  709. "https://nginx.org/en/docs/http/ngx_http_geoip_module.html#geoip_country",
  710. "https://nginx.org/en/docs/stream/ngx_stream_geoip_module.html#geoip_country"
  711. ]
  712. },
  713. "geoip_org": {
  714. "links": [
  715. "https://nginx.org/en/docs/http/ngx_http_geoip_module.html#geoip_org",
  716. "https://nginx.org/en/docs/stream/ngx_stream_geoip_module.html#geoip_org"
  717. ]
  718. },
  719. "geoip_proxy": {
  720. "links": [
  721. "https://nginx.org/en/docs/http/ngx_http_geoip_module.html#geoip_proxy"
  722. ]
  723. },
  724. "geoip_proxy_recursive": {
  725. "links": [
  726. "https://nginx.org/en/docs/http/ngx_http_geoip_module.html#geoip_proxy_recursive"
  727. ]
  728. },
  729. "google_perftools_profiles": {
  730. "links": [
  731. "https://nginx.org/en/docs/ngx_google_perftools_module.html#google_perftools_profiles"
  732. ]
  733. },
  734. "grpc_bind": {
  735. "links": [
  736. "https://nginx.org/en/docs/http/ngx_http_grpc_module.html#grpc_bind"
  737. ]
  738. },
  739. "grpc_buffer_size": {
  740. "links": [
  741. "https://nginx.org/en/docs/http/ngx_http_grpc_module.html#grpc_buffer_size"
  742. ]
  743. },
  744. "grpc_connect_timeout": {
  745. "links": [
  746. "https://nginx.org/en/docs/http/ngx_http_grpc_module.html#grpc_connect_timeout"
  747. ]
  748. },
  749. "grpc_hide_header": {
  750. "links": [
  751. "https://nginx.org/en/docs/http/ngx_http_grpc_module.html#grpc_hide_header"
  752. ]
  753. },
  754. "grpc_ignore_headers": {
  755. "links": [
  756. "https://nginx.org/en/docs/http/ngx_http_grpc_module.html#grpc_ignore_headers"
  757. ]
  758. },
  759. "grpc_intercept_errors": {
  760. "links": [
  761. "https://nginx.org/en/docs/http/ngx_http_grpc_module.html#grpc_intercept_errors"
  762. ]
  763. },
  764. "grpc_next_upstream": {
  765. "links": [
  766. "https://nginx.org/en/docs/http/ngx_http_grpc_module.html#grpc_next_upstream"
  767. ]
  768. },
  769. "grpc_next_upstream_timeout": {
  770. "links": [
  771. "https://nginx.org/en/docs/http/ngx_http_grpc_module.html#grpc_next_upstream_timeout"
  772. ]
  773. },
  774. "grpc_next_upstream_tries": {
  775. "links": [
  776. "https://nginx.org/en/docs/http/ngx_http_grpc_module.html#grpc_next_upstream_tries"
  777. ]
  778. },
  779. "grpc_pass": {
  780. "links": [
  781. "https://nginx.org/en/docs/http/ngx_http_grpc_module.html#grpc_pass"
  782. ]
  783. },
  784. "grpc_pass_header": {
  785. "links": [
  786. "https://nginx.org/en/docs/http/ngx_http_grpc_module.html#grpc_pass_header"
  787. ]
  788. },
  789. "grpc_read_timeout": {
  790. "links": [
  791. "https://nginx.org/en/docs/http/ngx_http_grpc_module.html#grpc_read_timeout"
  792. ]
  793. },
  794. "grpc_send_timeout": {
  795. "links": [
  796. "https://nginx.org/en/docs/http/ngx_http_grpc_module.html#grpc_send_timeout"
  797. ]
  798. },
  799. "grpc_set_header": {
  800. "links": [
  801. "https://nginx.org/en/docs/http/ngx_http_grpc_module.html#grpc_set_header"
  802. ]
  803. },
  804. "grpc_socket_keepalive": {
  805. "links": [
  806. "https://nginx.org/en/docs/http/ngx_http_grpc_module.html#grpc_socket_keepalive"
  807. ]
  808. },
  809. "grpc_ssl_certificate": {
  810. "links": [
  811. "https://nginx.org/en/docs/http/ngx_http_grpc_module.html#grpc_ssl_certificate"
  812. ]
  813. },
  814. "grpc_ssl_certificate_cache": {
  815. "links": [
  816. "https://nginx.org/en/docs/http/ngx_http_grpc_module.html#grpc_ssl_certificate_cache"
  817. ]
  818. },
  819. "grpc_ssl_certificate_key": {
  820. "links": [
  821. "https://nginx.org/en/docs/http/ngx_http_grpc_module.html#grpc_ssl_certificate_key"
  822. ]
  823. },
  824. "grpc_ssl_ciphers": {
  825. "links": [
  826. "https://nginx.org/en/docs/http/ngx_http_grpc_module.html#grpc_ssl_ciphers"
  827. ]
  828. },
  829. "grpc_ssl_conf_command": {
  830. "links": [
  831. "https://nginx.org/en/docs/http/ngx_http_grpc_module.html#grpc_ssl_conf_command"
  832. ]
  833. },
  834. "grpc_ssl_crl": {
  835. "links": [
  836. "https://nginx.org/en/docs/http/ngx_http_grpc_module.html#grpc_ssl_crl"
  837. ]
  838. },
  839. "grpc_ssl_key_log": {
  840. "links": [
  841. "https://nginx.org/en/docs/http/ngx_http_grpc_module.html#grpc_ssl_key_log"
  842. ]
  843. },
  844. "grpc_ssl_name": {
  845. "links": [
  846. "https://nginx.org/en/docs/http/ngx_http_grpc_module.html#grpc_ssl_name"
  847. ]
  848. },
  849. "grpc_ssl_password_file": {
  850. "links": [
  851. "https://nginx.org/en/docs/http/ngx_http_grpc_module.html#grpc_ssl_password_file"
  852. ]
  853. },
  854. "grpc_ssl_protocols": {
  855. "links": [
  856. "https://nginx.org/en/docs/http/ngx_http_grpc_module.html#grpc_ssl_protocols"
  857. ]
  858. },
  859. "grpc_ssl_server_name": {
  860. "links": [
  861. "https://nginx.org/en/docs/http/ngx_http_grpc_module.html#grpc_ssl_server_name"
  862. ]
  863. },
  864. "grpc_ssl_session_reuse": {
  865. "links": [
  866. "https://nginx.org/en/docs/http/ngx_http_grpc_module.html#grpc_ssl_session_reuse"
  867. ]
  868. },
  869. "grpc_ssl_trusted_certificate": {
  870. "links": [
  871. "https://nginx.org/en/docs/http/ngx_http_grpc_module.html#grpc_ssl_trusted_certificate"
  872. ]
  873. },
  874. "grpc_ssl_verify": {
  875. "links": [
  876. "https://nginx.org/en/docs/http/ngx_http_grpc_module.html#grpc_ssl_verify"
  877. ]
  878. },
  879. "grpc_ssl_verify_depth": {
  880. "links": [
  881. "https://nginx.org/en/docs/http/ngx_http_grpc_module.html#grpc_ssl_verify_depth"
  882. ]
  883. },
  884. "gunzip": {
  885. "links": [
  886. "https://nginx.org/en/docs/http/ngx_http_gunzip_module.html#gunzip"
  887. ]
  888. },
  889. "gunzip_buffers": {
  890. "links": [
  891. "https://nginx.org/en/docs/http/ngx_http_gunzip_module.html#gunzip_buffers"
  892. ]
  893. },
  894. "gzip": {
  895. "links": [
  896. "https://nginx.org/en/docs/http/ngx_http_gzip_module.html#gzip"
  897. ]
  898. },
  899. "gzip_buffers": {
  900. "links": [
  901. "https://nginx.org/en/docs/http/ngx_http_gzip_module.html#gzip_buffers"
  902. ]
  903. },
  904. "gzip_comp_level": {
  905. "links": [
  906. "https://nginx.org/en/docs/http/ngx_http_gzip_module.html#gzip_comp_level"
  907. ]
  908. },
  909. "gzip_disable": {
  910. "links": [
  911. "https://nginx.org/en/docs/http/ngx_http_gzip_module.html#gzip_disable"
  912. ]
  913. },
  914. "gzip_http_version": {
  915. "links": [
  916. "https://nginx.org/en/docs/http/ngx_http_gzip_module.html#gzip_http_version"
  917. ]
  918. },
  919. "gzip_min_length": {
  920. "links": [
  921. "https://nginx.org/en/docs/http/ngx_http_gzip_module.html#gzip_min_length"
  922. ]
  923. },
  924. "gzip_proxied": {
  925. "links": [
  926. "https://nginx.org/en/docs/http/ngx_http_gzip_module.html#gzip_proxied"
  927. ]
  928. },
  929. "gzip_static": {
  930. "links": [
  931. "https://nginx.org/en/docs/http/ngx_http_gzip_static_module.html#gzip_static"
  932. ]
  933. },
  934. "gzip_types": {
  935. "links": [
  936. "https://nginx.org/en/docs/http/ngx_http_gzip_module.html#gzip_types"
  937. ]
  938. },
  939. "gzip_vary": {
  940. "links": [
  941. "https://nginx.org/en/docs/http/ngx_http_gzip_module.html#gzip_vary"
  942. ]
  943. },
  944. "hash": {
  945. "links": [
  946. "https://nginx.org/en/docs/http/ngx_http_upstream_module.html#hash",
  947. "https://nginx.org/en/docs/stream/ngx_stream_upstream_module.html#hash"
  948. ]
  949. },
  950. "health_check": {
  951. "links": [
  952. "https://nginx.org/en/docs/http/ngx_http_upstream_hc_module.html#health_check",
  953. "https://nginx.org/en/docs/stream/ngx_stream_upstream_hc_module.html#health_check"
  954. ]
  955. },
  956. "health_check_timeout": {
  957. "links": [
  958. "https://nginx.org/en/docs/stream/ngx_stream_upstream_hc_module.html#health_check_timeout"
  959. ]
  960. },
  961. "hls": {
  962. "links": [
  963. "https://nginx.org/en/docs/http/ngx_http_hls_module.html#hls"
  964. ]
  965. },
  966. "hls_buffers": {
  967. "links": [
  968. "https://nginx.org/en/docs/http/ngx_http_hls_module.html#hls_buffers"
  969. ]
  970. },
  971. "hls_forward_args": {
  972. "links": [
  973. "https://nginx.org/en/docs/http/ngx_http_hls_module.html#hls_forward_args"
  974. ]
  975. },
  976. "hls_fragment": {
  977. "links": [
  978. "https://nginx.org/en/docs/http/ngx_http_hls_module.html#hls_fragment"
  979. ]
  980. },
  981. "hls_mp4_buffer_size": {
  982. "links": [
  983. "https://nginx.org/en/docs/http/ngx_http_hls_module.html#hls_mp4_buffer_size"
  984. ]
  985. },
  986. "hls_mp4_max_buffer_size": {
  987. "links": [
  988. "https://nginx.org/en/docs/http/ngx_http_hls_module.html#hls_mp4_max_buffer_size"
  989. ]
  990. },
  991. "http": {
  992. "links": [
  993. "https://nginx.org/en/docs/http/ngx_http_core_module.html#http"
  994. ]
  995. },
  996. "http2": {
  997. "links": [
  998. "https://nginx.org/en/docs/http/ngx_http_v2_module.html#http2"
  999. ]
  1000. },
  1001. "http2_body_preread_size": {
  1002. "links": [
  1003. "https://nginx.org/en/docs/http/ngx_http_v2_module.html#http2_body_preread_size"
  1004. ]
  1005. },
  1006. "http2_chunk_size": {
  1007. "links": [
  1008. "https://nginx.org/en/docs/http/ngx_http_v2_module.html#http2_chunk_size"
  1009. ]
  1010. },
  1011. "http2_idle_timeout": {
  1012. "links": [
  1013. "https://nginx.org/en/docs/http/ngx_http_v2_module.html#http2_idle_timeout"
  1014. ]
  1015. },
  1016. "http2_max_concurrent_pushes": {
  1017. "links": [
  1018. "https://nginx.org/en/docs/http/ngx_http_v2_module.html#http2_max_concurrent_pushes"
  1019. ]
  1020. },
  1021. "http2_max_concurrent_streams": {
  1022. "links": [
  1023. "https://nginx.org/en/docs/http/ngx_http_v2_module.html#http2_max_concurrent_streams"
  1024. ]
  1025. },
  1026. "http2_max_field_size": {
  1027. "links": [
  1028. "https://nginx.org/en/docs/http/ngx_http_v2_module.html#http2_max_field_size"
  1029. ]
  1030. },
  1031. "http2_max_header_size": {
  1032. "links": [
  1033. "https://nginx.org/en/docs/http/ngx_http_v2_module.html#http2_max_header_size"
  1034. ]
  1035. },
  1036. "http2_max_requests": {
  1037. "links": [
  1038. "https://nginx.org/en/docs/http/ngx_http_v2_module.html#http2_max_requests"
  1039. ]
  1040. },
  1041. "http2_push": {
  1042. "links": [
  1043. "https://nginx.org/en/docs/http/ngx_http_v2_module.html#http2_push"
  1044. ]
  1045. },
  1046. "http2_push_preload": {
  1047. "links": [
  1048. "https://nginx.org/en/docs/http/ngx_http_v2_module.html#http2_push_preload"
  1049. ]
  1050. },
  1051. "http2_recv_buffer_size": {
  1052. "links": [
  1053. "https://nginx.org/en/docs/http/ngx_http_v2_module.html#http2_recv_buffer_size"
  1054. ]
  1055. },
  1056. "http2_recv_timeout": {
  1057. "links": [
  1058. "https://nginx.org/en/docs/http/ngx_http_v2_module.html#http2_recv_timeout"
  1059. ]
  1060. },
  1061. "http3": {
  1062. "links": [
  1063. "https://nginx.org/en/docs/http/ngx_http_v3_module.html#http3"
  1064. ]
  1065. },
  1066. "http3_hq": {
  1067. "links": [
  1068. "https://nginx.org/en/docs/http/ngx_http_v3_module.html#http3_hq"
  1069. ]
  1070. },
  1071. "http3_max_concurrent_streams": {
  1072. "links": [
  1073. "https://nginx.org/en/docs/http/ngx_http_v3_module.html#http3_max_concurrent_streams"
  1074. ]
  1075. },
  1076. "http3_stream_buffer_size": {
  1077. "links": [
  1078. "https://nginx.org/en/docs/http/ngx_http_v3_module.html#http3_stream_buffer_size"
  1079. ]
  1080. },
  1081. "if": {
  1082. "links": [
  1083. "https://nginx.org/en/docs/http/ngx_http_rewrite_module.html#if"
  1084. ]
  1085. },
  1086. "if_modified_since": {
  1087. "links": [
  1088. "https://nginx.org/en/docs/http/ngx_http_core_module.html#if_modified_since"
  1089. ]
  1090. },
  1091. "ignore_invalid_headers": {
  1092. "links": [
  1093. "https://nginx.org/en/docs/http/ngx_http_core_module.html#ignore_invalid_headers"
  1094. ]
  1095. },
  1096. "image_filter": {
  1097. "links": [
  1098. "https://nginx.org/en/docs/http/ngx_http_image_filter_module.html#image_filter"
  1099. ]
  1100. },
  1101. "image_filter_buffer": {
  1102. "links": [
  1103. "https://nginx.org/en/docs/http/ngx_http_image_filter_module.html#image_filter_buffer"
  1104. ]
  1105. },
  1106. "image_filter_interlace": {
  1107. "links": [
  1108. "https://nginx.org/en/docs/http/ngx_http_image_filter_module.html#image_filter_interlace"
  1109. ]
  1110. },
  1111. "image_filter_jpeg_quality": {
  1112. "links": [
  1113. "https://nginx.org/en/docs/http/ngx_http_image_filter_module.html#image_filter_jpeg_quality"
  1114. ]
  1115. },
  1116. "image_filter_sharpen": {
  1117. "links": [
  1118. "https://nginx.org/en/docs/http/ngx_http_image_filter_module.html#image_filter_sharpen"
  1119. ]
  1120. },
  1121. "image_filter_transparency": {
  1122. "links": [
  1123. "https://nginx.org/en/docs/http/ngx_http_image_filter_module.html#image_filter_transparency"
  1124. ]
  1125. },
  1126. "image_filter_webp_quality": {
  1127. "links": [
  1128. "https://nginx.org/en/docs/http/ngx_http_image_filter_module.html#image_filter_webp_quality"
  1129. ]
  1130. },
  1131. "imap_auth": {
  1132. "links": [
  1133. "https://nginx.org/en/docs/mail/ngx_mail_imap_module.html#imap_auth"
  1134. ]
  1135. },
  1136. "imap_capabilities": {
  1137. "links": [
  1138. "https://nginx.org/en/docs/mail/ngx_mail_imap_module.html#imap_capabilities"
  1139. ]
  1140. },
  1141. "imap_client_buffer": {
  1142. "links": [
  1143. "https://nginx.org/en/docs/mail/ngx_mail_imap_module.html#imap_client_buffer"
  1144. ]
  1145. },
  1146. "include": {
  1147. "links": [
  1148. "https://nginx.org/en/docs/ngx_core_module.html#include"
  1149. ]
  1150. },
  1151. "index": {
  1152. "links": [
  1153. "https://nginx.org/en/docs/http/ngx_http_index_module.html#index"
  1154. ]
  1155. },
  1156. "internal": {
  1157. "links": [
  1158. "https://nginx.org/en/docs/http/ngx_http_core_module.html#internal"
  1159. ]
  1160. },
  1161. "internal_redirect": {
  1162. "links": [
  1163. "https://nginx.org/en/docs/http/ngx_http_internal_redirect_module.html#internal_redirect"
  1164. ]
  1165. },
  1166. "ip_hash": {
  1167. "links": [
  1168. "https://nginx.org/en/docs/http/ngx_http_upstream_module.html#ip_hash"
  1169. ]
  1170. },
  1171. "issuer": {
  1172. "links": [
  1173. "https://nginx.org/en/docs/http/ngx_http_oidc_module.html#issuer"
  1174. ]
  1175. },
  1176. "js_access": {
  1177. "links": [
  1178. "https://nginx.org/en/docs/stream/ngx_stream_js_module.html#js_access"
  1179. ]
  1180. },
  1181. "js_body_filter": {
  1182. "links": [
  1183. "https://nginx.org/en/docs/http/ngx_http_js_module.html#js_body_filter"
  1184. ]
  1185. },
  1186. "js_content": {
  1187. "links": [
  1188. "https://nginx.org/en/docs/http/ngx_http_js_module.html#js_content"
  1189. ]
  1190. },
  1191. "js_context_reuse": {
  1192. "links": [
  1193. "https://nginx.org/en/docs/http/ngx_http_js_module.html#js_context_reuse",
  1194. "https://nginx.org/en/docs/stream/ngx_stream_js_module.html#js_context_reuse"
  1195. ]
  1196. },
  1197. "js_engine": {
  1198. "links": [
  1199. "https://nginx.org/en/docs/http/ngx_http_js_module.html#js_engine",
  1200. "https://nginx.org/en/docs/stream/ngx_stream_js_module.html#js_engine"
  1201. ]
  1202. },
  1203. "js_fetch_buffer_size": {
  1204. "links": [
  1205. "https://nginx.org/en/docs/http/ngx_http_js_module.html#js_fetch_buffer_size",
  1206. "https://nginx.org/en/docs/stream/ngx_stream_js_module.html#js_fetch_buffer_size"
  1207. ]
  1208. },
  1209. "js_fetch_ciphers": {
  1210. "links": [
  1211. "https://nginx.org/en/docs/http/ngx_http_js_module.html#js_fetch_ciphers",
  1212. "https://nginx.org/en/docs/stream/ngx_stream_js_module.html#js_fetch_ciphers"
  1213. ]
  1214. },
  1215. "js_fetch_keepalive": {
  1216. "links": [
  1217. "https://nginx.org/en/docs/http/ngx_http_js_module.html#js_fetch_keepalive",
  1218. "https://nginx.org/en/docs/stream/ngx_stream_js_module.html#js_fetch_keepalive"
  1219. ]
  1220. },
  1221. "js_fetch_keepalive_requests": {
  1222. "links": [
  1223. "https://nginx.org/en/docs/http/ngx_http_js_module.html#js_fetch_keepalive_requests",
  1224. "https://nginx.org/en/docs/stream/ngx_stream_js_module.html#js_fetch_keepalive_requests"
  1225. ]
  1226. },
  1227. "js_fetch_keepalive_time": {
  1228. "links": [
  1229. "https://nginx.org/en/docs/http/ngx_http_js_module.html#js_fetch_keepalive_time",
  1230. "https://nginx.org/en/docs/stream/ngx_stream_js_module.html#js_fetch_keepalive_time"
  1231. ]
  1232. },
  1233. "js_fetch_keepalive_timeout": {
  1234. "links": [
  1235. "https://nginx.org/en/docs/http/ngx_http_js_module.html#js_fetch_keepalive_timeout",
  1236. "https://nginx.org/en/docs/stream/ngx_stream_js_module.html#js_fetch_keepalive_timeout"
  1237. ]
  1238. },
  1239. "js_fetch_max_response_buffer_size": {
  1240. "links": [
  1241. "https://nginx.org/en/docs/http/ngx_http_js_module.html#js_fetch_max_response_buffer_size",
  1242. "https://nginx.org/en/docs/stream/ngx_stream_js_module.html#js_fetch_max_response_buffer_size"
  1243. ]
  1244. },
  1245. "js_fetch_protocols": {
  1246. "links": [
  1247. "https://nginx.org/en/docs/http/ngx_http_js_module.html#js_fetch_protocols",
  1248. "https://nginx.org/en/docs/stream/ngx_stream_js_module.html#js_fetch_protocols"
  1249. ]
  1250. },
  1251. "js_fetch_timeout": {
  1252. "links": [
  1253. "https://nginx.org/en/docs/http/ngx_http_js_module.html#js_fetch_timeout",
  1254. "https://nginx.org/en/docs/stream/ngx_stream_js_module.html#js_fetch_timeout"
  1255. ]
  1256. },
  1257. "js_fetch_trusted_certificate": {
  1258. "links": [
  1259. "https://nginx.org/en/docs/http/ngx_http_js_module.html#js_fetch_trusted_certificate",
  1260. "https://nginx.org/en/docs/stream/ngx_stream_js_module.html#js_fetch_trusted_certificate"
  1261. ]
  1262. },
  1263. "js_fetch_verify": {
  1264. "links": [
  1265. "https://nginx.org/en/docs/http/ngx_http_js_module.html#js_fetch_verify",
  1266. "https://nginx.org/en/docs/stream/ngx_stream_js_module.html#js_fetch_verify"
  1267. ]
  1268. },
  1269. "js_fetch_verify_depth": {
  1270. "links": [
  1271. "https://nginx.org/en/docs/http/ngx_http_js_module.html#js_fetch_verify_depth",
  1272. "https://nginx.org/en/docs/stream/ngx_stream_js_module.html#js_fetch_verify_depth"
  1273. ]
  1274. },
  1275. "js_filter": {
  1276. "links": [
  1277. "https://nginx.org/en/docs/stream/ngx_stream_js_module.html#js_filter"
  1278. ]
  1279. },
  1280. "js_header_filter": {
  1281. "links": [
  1282. "https://nginx.org/en/docs/http/ngx_http_js_module.html#js_header_filter"
  1283. ]
  1284. },
  1285. "js_import": {
  1286. "links": [
  1287. "https://nginx.org/en/docs/http/ngx_http_js_module.html#js_import",
  1288. "https://nginx.org/en/docs/stream/ngx_stream_js_module.html#js_import"
  1289. ]
  1290. },
  1291. "js_include": {
  1292. "links": [
  1293. "https://nginx.org/en/docs/http/ngx_http_js_module.html#js_include",
  1294. "https://nginx.org/en/docs/stream/ngx_stream_js_module.html#js_include"
  1295. ]
  1296. },
  1297. "js_path": {
  1298. "links": [
  1299. "https://nginx.org/en/docs/http/ngx_http_js_module.html#js_path",
  1300. "https://nginx.org/en/docs/stream/ngx_stream_js_module.html#js_path"
  1301. ]
  1302. },
  1303. "js_periodic": {
  1304. "links": [
  1305. "https://nginx.org/en/docs/http/ngx_http_js_module.html#js_periodic",
  1306. "https://nginx.org/en/docs/stream/ngx_stream_js_module.html#js_periodic"
  1307. ]
  1308. },
  1309. "js_preload_object": {
  1310. "links": [
  1311. "https://nginx.org/en/docs/http/ngx_http_js_module.html#js_preload_object",
  1312. "https://nginx.org/en/docs/stream/ngx_stream_js_module.html#js_preload_object"
  1313. ]
  1314. },
  1315. "js_preread": {
  1316. "links": [
  1317. "https://nginx.org/en/docs/stream/ngx_stream_js_module.html#js_preread"
  1318. ]
  1319. },
  1320. "js_set": {
  1321. "links": [
  1322. "https://nginx.org/en/docs/http/ngx_http_js_module.html#js_set",
  1323. "https://nginx.org/en/docs/stream/ngx_stream_js_module.html#js_set"
  1324. ]
  1325. },
  1326. "js_shared_dict_zone": {
  1327. "links": [
  1328. "https://nginx.org/en/docs/http/ngx_http_js_module.html#js_shared_dict_zone",
  1329. "https://nginx.org/en/docs/stream/ngx_stream_js_module.html#js_shared_dict_zone"
  1330. ]
  1331. },
  1332. "js_var": {
  1333. "links": [
  1334. "https://nginx.org/en/docs/http/ngx_http_js_module.html#js_var",
  1335. "https://nginx.org/en/docs/stream/ngx_stream_js_module.html#js_var"
  1336. ]
  1337. },
  1338. "keepalive": {
  1339. "links": [
  1340. "https://nginx.org/en/docs/http/ngx_http_upstream_module.html#keepalive"
  1341. ]
  1342. },
  1343. "keepalive_disable": {
  1344. "links": [
  1345. "https://nginx.org/en/docs/http/ngx_http_core_module.html#keepalive_disable"
  1346. ]
  1347. },
  1348. "keepalive_min_timeout": {
  1349. "links": [
  1350. "https://nginx.org/en/docs/http/ngx_http_core_module.html#keepalive_min_timeout"
  1351. ]
  1352. },
  1353. "keepalive_requests": {
  1354. "links": [
  1355. "https://nginx.org/en/docs/http/ngx_http_core_module.html#keepalive_requests",
  1356. "https://nginx.org/en/docs/http/ngx_http_upstream_module.html#keepalive_requests"
  1357. ]
  1358. },
  1359. "keepalive_time": {
  1360. "links": [
  1361. "https://nginx.org/en/docs/http/ngx_http_core_module.html#keepalive_time",
  1362. "https://nginx.org/en/docs/http/ngx_http_upstream_module.html#keepalive_time"
  1363. ]
  1364. },
  1365. "keepalive_timeout": {
  1366. "links": [
  1367. "https://nginx.org/en/docs/http/ngx_http_core_module.html#keepalive_timeout",
  1368. "https://nginx.org/en/docs/http/ngx_http_upstream_module.html#keepalive_timeout"
  1369. ]
  1370. },
  1371. "keyval": {
  1372. "links": [
  1373. "https://nginx.org/en/docs/http/ngx_http_keyval_module.html#keyval",
  1374. "https://nginx.org/en/docs/stream/ngx_stream_keyval_module.html#keyval"
  1375. ]
  1376. },
  1377. "keyval_zone": {
  1378. "links": [
  1379. "https://nginx.org/en/docs/http/ngx_http_keyval_module.html#keyval_zone",
  1380. "https://nginx.org/en/docs/stream/ngx_stream_keyval_module.html#keyval_zone"
  1381. ]
  1382. },
  1383. "large_client_header_buffers": {
  1384. "links": [
  1385. "https://nginx.org/en/docs/http/ngx_http_core_module.html#large_client_header_buffers"
  1386. ]
  1387. },
  1388. "least_conn": {
  1389. "links": [
  1390. "https://nginx.org/en/docs/http/ngx_http_upstream_module.html#least_conn",
  1391. "https://nginx.org/en/docs/stream/ngx_stream_upstream_module.html#least_conn"
  1392. ]
  1393. },
  1394. "least_time": {
  1395. "links": [
  1396. "https://nginx.org/en/docs/http/ngx_http_upstream_module.html#least_time",
  1397. "https://nginx.org/en/docs/stream/ngx_stream_upstream_module.html#least_time"
  1398. ]
  1399. },
  1400. "license_token": {
  1401. "links": [
  1402. "https://nginx.org/en/docs/ngx_mgmt_module.html#license_token"
  1403. ]
  1404. },
  1405. "limit_conn": {
  1406. "links": [
  1407. "https://nginx.org/en/docs/http/ngx_http_limit_conn_module.html#limit_conn",
  1408. "https://nginx.org/en/docs/stream/ngx_stream_limit_conn_module.html#limit_conn"
  1409. ]
  1410. },
  1411. "limit_conn_dry_run": {
  1412. "links": [
  1413. "https://nginx.org/en/docs/http/ngx_http_limit_conn_module.html#limit_conn_dry_run",
  1414. "https://nginx.org/en/docs/stream/ngx_stream_limit_conn_module.html#limit_conn_dry_run"
  1415. ]
  1416. },
  1417. "limit_conn_log_level": {
  1418. "links": [
  1419. "https://nginx.org/en/docs/http/ngx_http_limit_conn_module.html#limit_conn_log_level",
  1420. "https://nginx.org/en/docs/stream/ngx_stream_limit_conn_module.html#limit_conn_log_level"
  1421. ]
  1422. },
  1423. "limit_conn_status": {
  1424. "links": [
  1425. "https://nginx.org/en/docs/http/ngx_http_limit_conn_module.html#limit_conn_status"
  1426. ]
  1427. },
  1428. "limit_conn_zone": {
  1429. "links": [
  1430. "https://nginx.org/en/docs/http/ngx_http_limit_conn_module.html#limit_conn_zone",
  1431. "https://nginx.org/en/docs/stream/ngx_stream_limit_conn_module.html#limit_conn_zone"
  1432. ]
  1433. },
  1434. "limit_except": {
  1435. "links": [
  1436. "https://nginx.org/en/docs/http/ngx_http_core_module.html#limit_except"
  1437. ]
  1438. },
  1439. "limit_rate": {
  1440. "links": [
  1441. "https://nginx.org/en/docs/http/ngx_http_core_module.html#limit_rate"
  1442. ]
  1443. },
  1444. "limit_rate_after": {
  1445. "links": [
  1446. "https://nginx.org/en/docs/http/ngx_http_core_module.html#limit_rate_after"
  1447. ]
  1448. },
  1449. "limit_req": {
  1450. "links": [
  1451. "https://nginx.org/en/docs/http/ngx_http_limit_req_module.html#limit_req"
  1452. ]
  1453. },
  1454. "limit_req_dry_run": {
  1455. "links": [
  1456. "https://nginx.org/en/docs/http/ngx_http_limit_req_module.html#limit_req_dry_run"
  1457. ]
  1458. },
  1459. "limit_req_log_level": {
  1460. "links": [
  1461. "https://nginx.org/en/docs/http/ngx_http_limit_req_module.html#limit_req_log_level"
  1462. ]
  1463. },
  1464. "limit_req_status": {
  1465. "links": [
  1466. "https://nginx.org/en/docs/http/ngx_http_limit_req_module.html#limit_req_status"
  1467. ]
  1468. },
  1469. "limit_req_zone": {
  1470. "links": [
  1471. "https://nginx.org/en/docs/http/ngx_http_limit_req_module.html#limit_req_zone"
  1472. ]
  1473. },
  1474. "limit_zone": {
  1475. "links": [
  1476. "https://nginx.org/en/docs/http/ngx_http_limit_conn_module.html#limit_zone"
  1477. ]
  1478. },
  1479. "lingering_close": {
  1480. "links": [
  1481. "https://nginx.org/en/docs/http/ngx_http_core_module.html#lingering_close"
  1482. ]
  1483. },
  1484. "lingering_time": {
  1485. "links": [
  1486. "https://nginx.org/en/docs/http/ngx_http_core_module.html#lingering_time"
  1487. ]
  1488. },
  1489. "lingering_timeout": {
  1490. "links": [
  1491. "https://nginx.org/en/docs/http/ngx_http_core_module.html#lingering_timeout"
  1492. ]
  1493. },
  1494. "listen": {
  1495. "links": [
  1496. "https://nginx.org/en/docs/http/ngx_http_core_module.html#listen",
  1497. "https://nginx.org/en/docs/mail/ngx_mail_core_module.html#listen",
  1498. "https://nginx.org/en/docs/stream/ngx_stream_core_module.html#listen"
  1499. ]
  1500. },
  1501. "load_module": {
  1502. "links": [
  1503. "https://nginx.org/en/docs/ngx_core_module.html#load_module"
  1504. ]
  1505. },
  1506. "location": {
  1507. "links": [
  1508. "https://nginx.org/en/docs/http/ngx_http_core_module.html#location"
  1509. ]
  1510. },
  1511. "lock_file": {
  1512. "links": [
  1513. "https://nginx.org/en/docs/ngx_core_module.html#lock_file"
  1514. ]
  1515. },
  1516. "log_format": {
  1517. "links": [
  1518. "https://nginx.org/en/docs/http/ngx_http_log_module.html#log_format",
  1519. "https://nginx.org/en/docs/stream/ngx_stream_log_module.html#log_format"
  1520. ]
  1521. },
  1522. "log_not_found": {
  1523. "links": [
  1524. "https://nginx.org/en/docs/http/ngx_http_core_module.html#log_not_found"
  1525. ]
  1526. },
  1527. "log_subrequest": {
  1528. "links": [
  1529. "https://nginx.org/en/docs/http/ngx_http_core_module.html#log_subrequest"
  1530. ]
  1531. },
  1532. "logout_token_hint": {
  1533. "links": [
  1534. "https://nginx.org/en/docs/http/ngx_http_oidc_module.html#logout_token_hint"
  1535. ]
  1536. },
  1537. "logout_uri": {
  1538. "links": [
  1539. "https://nginx.org/en/docs/http/ngx_http_oidc_module.html#logout_uri"
  1540. ]
  1541. },
  1542. "mail": {
  1543. "links": [
  1544. "https://nginx.org/en/docs/mail/ngx_mail_core_module.html#mail"
  1545. ]
  1546. },
  1547. "map": {
  1548. "links": [
  1549. "https://nginx.org/en/docs/http/ngx_http_map_module.html#map",
  1550. "https://nginx.org/en/docs/stream/ngx_stream_map_module.html#map"
  1551. ]
  1552. },
  1553. "map_hash_bucket_size": {
  1554. "links": [
  1555. "https://nginx.org/en/docs/http/ngx_http_map_module.html#map_hash_bucket_size",
  1556. "https://nginx.org/en/docs/stream/ngx_stream_map_module.html#map_hash_bucket_size"
  1557. ]
  1558. },
  1559. "map_hash_max_size": {
  1560. "links": [
  1561. "https://nginx.org/en/docs/http/ngx_http_map_module.html#map_hash_max_size",
  1562. "https://nginx.org/en/docs/stream/ngx_stream_map_module.html#map_hash_max_size"
  1563. ]
  1564. },
  1565. "master_process": {
  1566. "links": [
  1567. "https://nginx.org/en/docs/ngx_core_module.html#master_process"
  1568. ]
  1569. },
  1570. "match": {
  1571. "links": [
  1572. "https://nginx.org/en/docs/http/ngx_http_upstream_hc_module.html#match",
  1573. "https://nginx.org/en/docs/stream/ngx_stream_upstream_hc_module.html#match"
  1574. ]
  1575. },
  1576. "max_errors": {
  1577. "links": [
  1578. "https://nginx.org/en/docs/mail/ngx_mail_core_module.html#max_errors"
  1579. ]
  1580. },
  1581. "max_ranges": {
  1582. "links": [
  1583. "https://nginx.org/en/docs/http/ngx_http_core_module.html#max_ranges"
  1584. ]
  1585. },
  1586. "memcached_bind": {
  1587. "links": [
  1588. "https://nginx.org/en/docs/http/ngx_http_memcached_module.html#memcached_bind"
  1589. ]
  1590. },
  1591. "memcached_buffer_size": {
  1592. "links": [
  1593. "https://nginx.org/en/docs/http/ngx_http_memcached_module.html#memcached_buffer_size"
  1594. ]
  1595. },
  1596. "memcached_connect_timeout": {
  1597. "links": [
  1598. "https://nginx.org/en/docs/http/ngx_http_memcached_module.html#memcached_connect_timeout"
  1599. ]
  1600. },
  1601. "memcached_gzip_flag": {
  1602. "links": [
  1603. "https://nginx.org/en/docs/http/ngx_http_memcached_module.html#memcached_gzip_flag"
  1604. ]
  1605. },
  1606. "memcached_next_upstream": {
  1607. "links": [
  1608. "https://nginx.org/en/docs/http/ngx_http_memcached_module.html#memcached_next_upstream"
  1609. ]
  1610. },
  1611. "memcached_next_upstream_timeout": {
  1612. "links": [
  1613. "https://nginx.org/en/docs/http/ngx_http_memcached_module.html#memcached_next_upstream_timeout"
  1614. ]
  1615. },
  1616. "memcached_next_upstream_tries": {
  1617. "links": [
  1618. "https://nginx.org/en/docs/http/ngx_http_memcached_module.html#memcached_next_upstream_tries"
  1619. ]
  1620. },
  1621. "memcached_pass": {
  1622. "links": [
  1623. "https://nginx.org/en/docs/http/ngx_http_memcached_module.html#memcached_pass"
  1624. ]
  1625. },
  1626. "memcached_read_timeout": {
  1627. "links": [
  1628. "https://nginx.org/en/docs/http/ngx_http_memcached_module.html#memcached_read_timeout"
  1629. ]
  1630. },
  1631. "memcached_send_timeout": {
  1632. "links": [
  1633. "https://nginx.org/en/docs/http/ngx_http_memcached_module.html#memcached_send_timeout"
  1634. ]
  1635. },
  1636. "memcached_socket_keepalive": {
  1637. "links": [
  1638. "https://nginx.org/en/docs/http/ngx_http_memcached_module.html#memcached_socket_keepalive"
  1639. ]
  1640. },
  1641. "merge_slashes": {
  1642. "links": [
  1643. "https://nginx.org/en/docs/http/ngx_http_core_module.html#merge_slashes"
  1644. ]
  1645. },
  1646. "mgmt": {
  1647. "links": [
  1648. "https://nginx.org/en/docs/ngx_mgmt_module.html#mgmt"
  1649. ]
  1650. },
  1651. "min_delete_depth": {
  1652. "links": [
  1653. "https://nginx.org/en/docs/http/ngx_http_dav_module.html#min_delete_depth"
  1654. ]
  1655. },
  1656. "mirror": {
  1657. "links": [
  1658. "https://nginx.org/en/docs/http/ngx_http_mirror_module.html#mirror"
  1659. ]
  1660. },
  1661. "mirror_request_body": {
  1662. "links": [
  1663. "https://nginx.org/en/docs/http/ngx_http_mirror_module.html#mirror_request_body"
  1664. ]
  1665. },
  1666. "modern_browser": {
  1667. "links": [
  1668. "https://nginx.org/en/docs/http/ngx_http_browser_module.html#modern_browser"
  1669. ]
  1670. },
  1671. "modern_browser_value": {
  1672. "links": [
  1673. "https://nginx.org/en/docs/http/ngx_http_browser_module.html#modern_browser_value"
  1674. ]
  1675. },
  1676. "mp4": {
  1677. "links": [
  1678. "https://nginx.org/en/docs/http/ngx_http_mp4_module.html#mp4"
  1679. ]
  1680. },
  1681. "mp4_buffer_size": {
  1682. "links": [
  1683. "https://nginx.org/en/docs/http/ngx_http_mp4_module.html#mp4_buffer_size"
  1684. ]
  1685. },
  1686. "mp4_limit_rate": {
  1687. "links": [
  1688. "https://nginx.org/en/docs/http/ngx_http_mp4_module.html#mp4_limit_rate"
  1689. ]
  1690. },
  1691. "mp4_limit_rate_after": {
  1692. "links": [
  1693. "https://nginx.org/en/docs/http/ngx_http_mp4_module.html#mp4_limit_rate_after"
  1694. ]
  1695. },
  1696. "mp4_max_buffer_size": {
  1697. "links": [
  1698. "https://nginx.org/en/docs/http/ngx_http_mp4_module.html#mp4_max_buffer_size"
  1699. ]
  1700. },
  1701. "mp4_start_key_frame": {
  1702. "links": [
  1703. "https://nginx.org/en/docs/http/ngx_http_mp4_module.html#mp4_start_key_frame"
  1704. ]
  1705. },
  1706. "mqtt": {
  1707. "links": [
  1708. "https://nginx.org/en/docs/stream/ngx_stream_mqtt_filter_module.html#mqtt"
  1709. ]
  1710. },
  1711. "mqtt_buffers": {
  1712. "links": [
  1713. "https://nginx.org/en/docs/stream/ngx_stream_mqtt_filter_module.html#mqtt_buffers"
  1714. ]
  1715. },
  1716. "mqtt_preread": {
  1717. "links": [
  1718. "https://nginx.org/en/docs/stream/ngx_stream_mqtt_preread_module.html#mqtt_preread"
  1719. ]
  1720. },
  1721. "mqtt_rewrite_buffer_size": {
  1722. "links": [
  1723. "https://nginx.org/en/docs/stream/ngx_stream_mqtt_filter_module.html#mqtt_rewrite_buffer_size"
  1724. ]
  1725. },
  1726. "mqtt_set_connect": {
  1727. "links": [
  1728. "https://nginx.org/en/docs/stream/ngx_stream_mqtt_filter_module.html#mqtt_set_connect"
  1729. ]
  1730. },
  1731. "msie_padding": {
  1732. "links": [
  1733. "https://nginx.org/en/docs/http/ngx_http_core_module.html#msie_padding"
  1734. ]
  1735. },
  1736. "msie_refresh": {
  1737. "links": [
  1738. "https://nginx.org/en/docs/http/ngx_http_core_module.html#msie_refresh"
  1739. ]
  1740. },
  1741. "multi_accept": {
  1742. "links": [
  1743. "https://nginx.org/en/docs/ngx_core_module.html#multi_accept"
  1744. ]
  1745. },
  1746. "ntlm": {
  1747. "links": [
  1748. "https://nginx.org/en/docs/http/ngx_http_upstream_module.html#ntlm"
  1749. ]
  1750. },
  1751. "oidc_provider": {
  1752. "links": [
  1753. "https://nginx.org/en/docs/http/ngx_http_oidc_module.html#oidc_provider"
  1754. ]
  1755. },
  1756. "open_file_cache": {
  1757. "links": [
  1758. "https://nginx.org/en/docs/http/ngx_http_core_module.html#open_file_cache"
  1759. ]
  1760. },
  1761. "open_file_cache_errors": {
  1762. "links": [
  1763. "https://nginx.org/en/docs/http/ngx_http_core_module.html#open_file_cache_errors"
  1764. ]
  1765. },
  1766. "open_file_cache_min_uses": {
  1767. "links": [
  1768. "https://nginx.org/en/docs/http/ngx_http_core_module.html#open_file_cache_min_uses"
  1769. ]
  1770. },
  1771. "open_file_cache_valid": {
  1772. "links": [
  1773. "https://nginx.org/en/docs/http/ngx_http_core_module.html#open_file_cache_valid"
  1774. ]
  1775. },
  1776. "open_log_file_cache": {
  1777. "links": [
  1778. "https://nginx.org/en/docs/http/ngx_http_log_module.html#open_log_file_cache",
  1779. "https://nginx.org/en/docs/stream/ngx_stream_log_module.html#open_log_file_cache"
  1780. ]
  1781. },
  1782. "otel_exporter": {
  1783. "links": [
  1784. "https://nginx.org/en/docs/ngx_otel_module.html#otel_exporter"
  1785. ]
  1786. },
  1787. "otel_resource_attr": {
  1788. "links": [
  1789. "https://nginx.org/en/docs/ngx_otel_module.html#otel_resource_attr"
  1790. ]
  1791. },
  1792. "otel_service_name": {
  1793. "links": [
  1794. "https://nginx.org/en/docs/ngx_otel_module.html#otel_service_name"
  1795. ]
  1796. },
  1797. "otel_span_attr": {
  1798. "links": [
  1799. "https://nginx.org/en/docs/ngx_otel_module.html#otel_span_attr"
  1800. ]
  1801. },
  1802. "otel_span_name": {
  1803. "links": [
  1804. "https://nginx.org/en/docs/ngx_otel_module.html#otel_span_name"
  1805. ]
  1806. },
  1807. "otel_trace": {
  1808. "links": [
  1809. "https://nginx.org/en/docs/ngx_otel_module.html#otel_trace"
  1810. ]
  1811. },
  1812. "otel_trace_context": {
  1813. "links": [
  1814. "https://nginx.org/en/docs/ngx_otel_module.html#otel_trace_context"
  1815. ]
  1816. },
  1817. "output_buffers": {
  1818. "links": [
  1819. "https://nginx.org/en/docs/http/ngx_http_core_module.html#output_buffers"
  1820. ]
  1821. },
  1822. "override_charset": {
  1823. "links": [
  1824. "https://nginx.org/en/docs/http/ngx_http_charset_module.html#override_charset"
  1825. ]
  1826. },
  1827. "pass": {
  1828. "links": [
  1829. "https://nginx.org/en/docs/stream/ngx_stream_pass_module.html#pass"
  1830. ]
  1831. },
  1832. "pcre_jit": {
  1833. "links": [
  1834. "https://nginx.org/en/docs/ngx_core_module.html#pcre_jit"
  1835. ]
  1836. },
  1837. "perl": {
  1838. "links": [
  1839. "https://nginx.org/en/docs/http/ngx_http_perl_module.html#perl"
  1840. ]
  1841. },
  1842. "perl_modules": {
  1843. "links": [
  1844. "https://nginx.org/en/docs/http/ngx_http_perl_module.html#perl_modules"
  1845. ]
  1846. },
  1847. "perl_require": {
  1848. "links": [
  1849. "https://nginx.org/en/docs/http/ngx_http_perl_module.html#perl_require"
  1850. ]
  1851. },
  1852. "perl_set": {
  1853. "links": [
  1854. "https://nginx.org/en/docs/http/ngx_http_perl_module.html#perl_set"
  1855. ]
  1856. },
  1857. "pid": {
  1858. "links": [
  1859. "https://nginx.org/en/docs/ngx_core_module.html#pid"
  1860. ]
  1861. },
  1862. "pop3_auth": {
  1863. "links": [
  1864. "https://nginx.org/en/docs/mail/ngx_mail_pop3_module.html#pop3_auth"
  1865. ]
  1866. },
  1867. "pop3_capabilities": {
  1868. "links": [
  1869. "https://nginx.org/en/docs/mail/ngx_mail_pop3_module.html#pop3_capabilities"
  1870. ]
  1871. },
  1872. "port_in_redirect": {
  1873. "links": [
  1874. "https://nginx.org/en/docs/http/ngx_http_core_module.html#port_in_redirect"
  1875. ]
  1876. },
  1877. "post_logout_uri": {
  1878. "links": [
  1879. "https://nginx.org/en/docs/http/ngx_http_oidc_module.html#post_logout_uri"
  1880. ]
  1881. },
  1882. "postpone_output": {
  1883. "links": [
  1884. "https://nginx.org/en/docs/http/ngx_http_core_module.html#postpone_output"
  1885. ]
  1886. },
  1887. "preread_buffer_size": {
  1888. "links": [
  1889. "https://nginx.org/en/docs/stream/ngx_stream_core_module.html#preread_buffer_size"
  1890. ]
  1891. },
  1892. "preread_timeout": {
  1893. "links": [
  1894. "https://nginx.org/en/docs/stream/ngx_stream_core_module.html#preread_timeout"
  1895. ]
  1896. },
  1897. "protocol": {
  1898. "links": [
  1899. "https://nginx.org/en/docs/mail/ngx_mail_core_module.html#protocol"
  1900. ]
  1901. },
  1902. "proxy": {
  1903. "links": [
  1904. "https://nginx.org/en/docs/ngx_mgmt_module.html#proxy"
  1905. ]
  1906. },
  1907. "proxy_bind": {
  1908. "links": [
  1909. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_bind",
  1910. "https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_bind"
  1911. ]
  1912. },
  1913. "proxy_buffer": {
  1914. "links": [
  1915. "https://nginx.org/en/docs/mail/ngx_mail_proxy_module.html#proxy_buffer"
  1916. ]
  1917. },
  1918. "proxy_buffer_size": {
  1919. "links": [
  1920. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_buffer_size",
  1921. "https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_buffer_size"
  1922. ]
  1923. },
  1924. "proxy_buffering": {
  1925. "links": [
  1926. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_buffering"
  1927. ]
  1928. },
  1929. "proxy_buffers": {
  1930. "links": [
  1931. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_buffers"
  1932. ]
  1933. },
  1934. "proxy_busy_buffers_size": {
  1935. "links": [
  1936. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_busy_buffers_size"
  1937. ]
  1938. },
  1939. "proxy_cache": {
  1940. "links": [
  1941. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_cache"
  1942. ]
  1943. },
  1944. "proxy_cache_background_update": {
  1945. "links": [
  1946. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_cache_background_update"
  1947. ]
  1948. },
  1949. "proxy_cache_bypass": {
  1950. "links": [
  1951. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_cache_bypass"
  1952. ]
  1953. },
  1954. "proxy_cache_convert_head": {
  1955. "links": [
  1956. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_cache_convert_head"
  1957. ]
  1958. },
  1959. "proxy_cache_key": {
  1960. "links": [
  1961. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_cache_key"
  1962. ]
  1963. },
  1964. "proxy_cache_lock": {
  1965. "links": [
  1966. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_cache_lock"
  1967. ]
  1968. },
  1969. "proxy_cache_lock_age": {
  1970. "links": [
  1971. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_cache_lock_age"
  1972. ]
  1973. },
  1974. "proxy_cache_lock_timeout": {
  1975. "links": [
  1976. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_cache_lock_timeout"
  1977. ]
  1978. },
  1979. "proxy_cache_max_range_offset": {
  1980. "links": [
  1981. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_cache_max_range_offset"
  1982. ]
  1983. },
  1984. "proxy_cache_methods": {
  1985. "links": [
  1986. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_cache_methods"
  1987. ]
  1988. },
  1989. "proxy_cache_min_uses": {
  1990. "links": [
  1991. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_cache_min_uses"
  1992. ]
  1993. },
  1994. "proxy_cache_path": {
  1995. "links": [
  1996. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_cache_path"
  1997. ]
  1998. },
  1999. "proxy_cache_purge": {
  2000. "links": [
  2001. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_cache_purge"
  2002. ]
  2003. },
  2004. "proxy_cache_revalidate": {
  2005. "links": [
  2006. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_cache_revalidate"
  2007. ]
  2008. },
  2009. "proxy_cache_use_stale": {
  2010. "links": [
  2011. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_cache_use_stale"
  2012. ]
  2013. },
  2014. "proxy_cache_valid": {
  2015. "links": [
  2016. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_cache_valid"
  2017. ]
  2018. },
  2019. "proxy_connect_timeout": {
  2020. "links": [
  2021. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_connect_timeout",
  2022. "https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_connect_timeout"
  2023. ]
  2024. },
  2025. "proxy_cookie_domain": {
  2026. "links": [
  2027. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_cookie_domain"
  2028. ]
  2029. },
  2030. "proxy_cookie_flags": {
  2031. "links": [
  2032. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_cookie_flags"
  2033. ]
  2034. },
  2035. "proxy_cookie_path": {
  2036. "links": [
  2037. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_cookie_path"
  2038. ]
  2039. },
  2040. "proxy_download_rate": {
  2041. "links": [
  2042. "https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_download_rate"
  2043. ]
  2044. },
  2045. "proxy_force_ranges": {
  2046. "links": [
  2047. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_force_ranges"
  2048. ]
  2049. },
  2050. "proxy_half_close": {
  2051. "links": [
  2052. "https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_half_close"
  2053. ]
  2054. },
  2055. "proxy_headers_hash_bucket_size": {
  2056. "links": [
  2057. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_headers_hash_bucket_size"
  2058. ]
  2059. },
  2060. "proxy_headers_hash_max_size": {
  2061. "links": [
  2062. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_headers_hash_max_size"
  2063. ]
  2064. },
  2065. "proxy_hide_header": {
  2066. "links": [
  2067. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_hide_header"
  2068. ]
  2069. },
  2070. "proxy_http_version": {
  2071. "links": [
  2072. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_http_version"
  2073. ]
  2074. },
  2075. "proxy_ignore_client_abort": {
  2076. "links": [
  2077. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_ignore_client_abort"
  2078. ]
  2079. },
  2080. "proxy_ignore_headers": {
  2081. "links": [
  2082. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_ignore_headers"
  2083. ]
  2084. },
  2085. "proxy_intercept_errors": {
  2086. "links": [
  2087. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_intercept_errors"
  2088. ]
  2089. },
  2090. "proxy_limit_rate": {
  2091. "links": [
  2092. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_limit_rate"
  2093. ]
  2094. },
  2095. "proxy_max_temp_file_size": {
  2096. "links": [
  2097. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_max_temp_file_size"
  2098. ]
  2099. },
  2100. "proxy_method": {
  2101. "links": [
  2102. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_method"
  2103. ]
  2104. },
  2105. "proxy_next_upstream": {
  2106. "links": [
  2107. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_next_upstream",
  2108. "https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_next_upstream"
  2109. ]
  2110. },
  2111. "proxy_next_upstream_timeout": {
  2112. "links": [
  2113. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_next_upstream_timeout",
  2114. "https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_next_upstream_timeout"
  2115. ]
  2116. },
  2117. "proxy_next_upstream_tries": {
  2118. "links": [
  2119. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_next_upstream_tries",
  2120. "https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_next_upstream_tries"
  2121. ]
  2122. },
  2123. "proxy_no_cache": {
  2124. "links": [
  2125. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_no_cache"
  2126. ]
  2127. },
  2128. "proxy_pass": {
  2129. "links": [
  2130. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_pass",
  2131. "https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_pass"
  2132. ]
  2133. },
  2134. "proxy_pass_error_message": {
  2135. "links": [
  2136. "https://nginx.org/en/docs/mail/ngx_mail_proxy_module.html#proxy_pass_error_message"
  2137. ]
  2138. },
  2139. "proxy_pass_header": {
  2140. "links": [
  2141. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_pass_header"
  2142. ]
  2143. },
  2144. "proxy_pass_request_body": {
  2145. "links": [
  2146. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_pass_request_body"
  2147. ]
  2148. },
  2149. "proxy_pass_request_headers": {
  2150. "links": [
  2151. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_pass_request_headers"
  2152. ]
  2153. },
  2154. "proxy_pass_trailers": {
  2155. "links": [
  2156. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_pass_trailers"
  2157. ]
  2158. },
  2159. "proxy_password": {
  2160. "links": [
  2161. "https://nginx.org/en/docs/ngx_mgmt_module.html#proxy_password"
  2162. ]
  2163. },
  2164. "proxy_protocol": {
  2165. "links": [
  2166. "https://nginx.org/en/docs/mail/ngx_mail_proxy_module.html#proxy_protocol",
  2167. "https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_protocol"
  2168. ]
  2169. },
  2170. "proxy_protocol_timeout": {
  2171. "links": [
  2172. "https://nginx.org/en/docs/stream/ngx_stream_core_module.html#proxy_protocol_timeout"
  2173. ]
  2174. },
  2175. "proxy_read_timeout": {
  2176. "links": [
  2177. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_read_timeout"
  2178. ]
  2179. },
  2180. "proxy_redirect": {
  2181. "links": [
  2182. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_redirect"
  2183. ]
  2184. },
  2185. "proxy_request_buffering": {
  2186. "links": [
  2187. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_request_buffering"
  2188. ]
  2189. },
  2190. "proxy_requests": {
  2191. "links": [
  2192. "https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_requests"
  2193. ]
  2194. },
  2195. "proxy_responses": {
  2196. "links": [
  2197. "https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_responses"
  2198. ]
  2199. },
  2200. "proxy_send_lowat": {
  2201. "links": [
  2202. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_send_lowat"
  2203. ]
  2204. },
  2205. "proxy_send_timeout": {
  2206. "links": [
  2207. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_send_timeout"
  2208. ]
  2209. },
  2210. "proxy_session_drop": {
  2211. "links": [
  2212. "https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_session_drop"
  2213. ]
  2214. },
  2215. "proxy_set_body": {
  2216. "links": [
  2217. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_set_body"
  2218. ]
  2219. },
  2220. "proxy_set_header": {
  2221. "links": [
  2222. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_set_header"
  2223. ]
  2224. },
  2225. "proxy_smtp_auth": {
  2226. "links": [
  2227. "https://nginx.org/en/docs/mail/ngx_mail_proxy_module.html#proxy_smtp_auth"
  2228. ]
  2229. },
  2230. "proxy_socket_keepalive": {
  2231. "links": [
  2232. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_socket_keepalive",
  2233. "https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_socket_keepalive"
  2234. ]
  2235. },
  2236. "proxy_ssl": {
  2237. "links": [
  2238. "https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_ssl"
  2239. ]
  2240. },
  2241. "proxy_ssl_certificate": {
  2242. "links": [
  2243. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_ssl_certificate",
  2244. "https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_ssl_certificate"
  2245. ]
  2246. },
  2247. "proxy_ssl_certificate_cache": {
  2248. "links": [
  2249. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_ssl_certificate_cache",
  2250. "https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_ssl_certificate_cache"
  2251. ]
  2252. },
  2253. "proxy_ssl_certificate_key": {
  2254. "links": [
  2255. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_ssl_certificate_key",
  2256. "https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_ssl_certificate_key"
  2257. ]
  2258. },
  2259. "proxy_ssl_ciphers": {
  2260. "links": [
  2261. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_ssl_ciphers",
  2262. "https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_ssl_ciphers"
  2263. ]
  2264. },
  2265. "proxy_ssl_conf_command": {
  2266. "links": [
  2267. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_ssl_conf_command",
  2268. "https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_ssl_conf_command"
  2269. ]
  2270. },
  2271. "proxy_ssl_crl": {
  2272. "links": [
  2273. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_ssl_crl",
  2274. "https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_ssl_crl"
  2275. ]
  2276. },
  2277. "proxy_ssl_key_log": {
  2278. "links": [
  2279. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_ssl_key_log",
  2280. "https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_ssl_key_log"
  2281. ]
  2282. },
  2283. "proxy_ssl_name": {
  2284. "links": [
  2285. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_ssl_name",
  2286. "https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_ssl_name"
  2287. ]
  2288. },
  2289. "proxy_ssl_password_file": {
  2290. "links": [
  2291. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_ssl_password_file",
  2292. "https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_ssl_password_file"
  2293. ]
  2294. },
  2295. "proxy_ssl_protocols": {
  2296. "links": [
  2297. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_ssl_protocols",
  2298. "https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_ssl_protocols"
  2299. ]
  2300. },
  2301. "proxy_ssl_server_name": {
  2302. "links": [
  2303. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_ssl_server_name",
  2304. "https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_ssl_server_name"
  2305. ]
  2306. },
  2307. "proxy_ssl_session_reuse": {
  2308. "links": [
  2309. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_ssl_session_reuse",
  2310. "https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_ssl_session_reuse"
  2311. ]
  2312. },
  2313. "proxy_ssl_trusted_certificate": {
  2314. "links": [
  2315. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_ssl_trusted_certificate",
  2316. "https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_ssl_trusted_certificate"
  2317. ]
  2318. },
  2319. "proxy_ssl_verify": {
  2320. "links": [
  2321. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_ssl_verify",
  2322. "https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_ssl_verify"
  2323. ]
  2324. },
  2325. "proxy_ssl_verify_depth": {
  2326. "links": [
  2327. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_ssl_verify_depth",
  2328. "https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_ssl_verify_depth"
  2329. ]
  2330. },
  2331. "proxy_store": {
  2332. "links": [
  2333. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_store"
  2334. ]
  2335. },
  2336. "proxy_store_access": {
  2337. "links": [
  2338. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_store_access"
  2339. ]
  2340. },
  2341. "proxy_temp_file_write_size": {
  2342. "links": [
  2343. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_temp_file_write_size"
  2344. ]
  2345. },
  2346. "proxy_temp_path": {
  2347. "links": [
  2348. "https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_temp_path"
  2349. ]
  2350. },
  2351. "proxy_timeout": {
  2352. "links": [
  2353. "https://nginx.org/en/docs/mail/ngx_mail_proxy_module.html#proxy_timeout",
  2354. "https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_timeout"
  2355. ]
  2356. },
  2357. "proxy_upload_rate": {
  2358. "links": [
  2359. "https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_upload_rate"
  2360. ]
  2361. },
  2362. "proxy_username": {
  2363. "links": [
  2364. "https://nginx.org/en/docs/ngx_mgmt_module.html#proxy_username"
  2365. ]
  2366. },
  2367. "queue": {
  2368. "links": [
  2369. "https://nginx.org/en/docs/http/ngx_http_upstream_module.html#queue"
  2370. ]
  2371. },
  2372. "quic_active_connection_id_limit": {
  2373. "links": [
  2374. "https://nginx.org/en/docs/http/ngx_http_v3_module.html#quic_active_connection_id_limit"
  2375. ]
  2376. },
  2377. "quic_bpf": {
  2378. "links": [
  2379. "https://nginx.org/en/docs/http/ngx_http_v3_module.html#quic_bpf"
  2380. ]
  2381. },
  2382. "quic_gso": {
  2383. "links": [
  2384. "https://nginx.org/en/docs/http/ngx_http_v3_module.html#quic_gso"
  2385. ]
  2386. },
  2387. "quic_host_key": {
  2388. "links": [
  2389. "https://nginx.org/en/docs/http/ngx_http_v3_module.html#quic_host_key"
  2390. ]
  2391. },
  2392. "quic_retry": {
  2393. "links": [
  2394. "https://nginx.org/en/docs/http/ngx_http_v3_module.html#quic_retry"
  2395. ]
  2396. },
  2397. "random": {
  2398. "links": [
  2399. "https://nginx.org/en/docs/http/ngx_http_upstream_module.html#random",
  2400. "https://nginx.org/en/docs/stream/ngx_stream_upstream_module.html#random"
  2401. ]
  2402. },
  2403. "random_index": {
  2404. "links": [
  2405. "https://nginx.org/en/docs/http/ngx_http_random_index_module.html#random_index"
  2406. ]
  2407. },
  2408. "read_ahead": {
  2409. "links": [
  2410. "https://nginx.org/en/docs/http/ngx_http_core_module.html#read_ahead"
  2411. ]
  2412. },
  2413. "real_ip_header": {
  2414. "links": [
  2415. "https://nginx.org/en/docs/http/ngx_http_realip_module.html#real_ip_header"
  2416. ]
  2417. },
  2418. "real_ip_recursive": {
  2419. "links": [
  2420. "https://nginx.org/en/docs/http/ngx_http_realip_module.html#real_ip_recursive"
  2421. ]
  2422. },
  2423. "recursive_error_pages": {
  2424. "links": [
  2425. "https://nginx.org/en/docs/http/ngx_http_core_module.html#recursive_error_pages"
  2426. ]
  2427. },
  2428. "redirect_uri": {
  2429. "links": [
  2430. "https://nginx.org/en/docs/http/ngx_http_oidc_module.html#redirect_uri"
  2431. ]
  2432. },
  2433. "referer_hash_bucket_size": {
  2434. "links": [
  2435. "https://nginx.org/en/docs/http/ngx_http_referer_module.html#referer_hash_bucket_size"
  2436. ]
  2437. },
  2438. "referer_hash_max_size": {
  2439. "links": [
  2440. "https://nginx.org/en/docs/http/ngx_http_referer_module.html#referer_hash_max_size"
  2441. ]
  2442. },
  2443. "request_pool_size": {
  2444. "links": [
  2445. "https://nginx.org/en/docs/http/ngx_http_core_module.html#request_pool_size"
  2446. ]
  2447. },
  2448. "reset_timedout_connection": {
  2449. "links": [
  2450. "https://nginx.org/en/docs/http/ngx_http_core_module.html#reset_timedout_connection"
  2451. ]
  2452. },
  2453. "resolver": {
  2454. "links": [
  2455. "https://nginx.org/en/docs/http/ngx_http_core_module.html#resolver",
  2456. "https://nginx.org/en/docs/http/ngx_http_upstream_module.html#resolver",
  2457. "https://nginx.org/en/docs/mail/ngx_mail_core_module.html#resolver",
  2458. "https://nginx.org/en/docs/stream/ngx_stream_core_module.html#resolver",
  2459. "https://nginx.org/en/docs/stream/ngx_stream_upstream_module.html#resolver",
  2460. "https://nginx.org/en/docs/ngx_mgmt_module.html#resolver"
  2461. ]
  2462. },
  2463. "resolver_timeout": {
  2464. "links": [
  2465. "https://nginx.org/en/docs/http/ngx_http_core_module.html#resolver_timeout",
  2466. "https://nginx.org/en/docs/http/ngx_http_upstream_module.html#resolver_timeout",
  2467. "https://nginx.org/en/docs/mail/ngx_mail_core_module.html#resolver_timeout",
  2468. "https://nginx.org/en/docs/stream/ngx_stream_core_module.html#resolver_timeout",
  2469. "https://nginx.org/en/docs/stream/ngx_stream_upstream_module.html#resolver_timeout"
  2470. ]
  2471. },
  2472. "return": {
  2473. "links": [
  2474. "https://nginx.org/en/docs/http/ngx_http_rewrite_module.html#return",
  2475. "https://nginx.org/en/docs/stream/ngx_stream_return_module.html#return"
  2476. ]
  2477. },
  2478. "rewrite": {
  2479. "links": [
  2480. "https://nginx.org/en/docs/http/ngx_http_rewrite_module.html#rewrite"
  2481. ]
  2482. },
  2483. "rewrite_log": {
  2484. "links": [
  2485. "https://nginx.org/en/docs/http/ngx_http_rewrite_module.html#rewrite_log"
  2486. ]
  2487. },
  2488. "root": {
  2489. "links": [
  2490. "https://nginx.org/en/docs/http/ngx_http_core_module.html#root"
  2491. ]
  2492. },
  2493. "satisfy": {
  2494. "links": [
  2495. "https://nginx.org/en/docs/http/ngx_http_core_module.html#satisfy"
  2496. ]
  2497. },
  2498. "scgi_bind": {
  2499. "links": [
  2500. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_bind"
  2501. ]
  2502. },
  2503. "scgi_buffer_size": {
  2504. "links": [
  2505. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_buffer_size"
  2506. ]
  2507. },
  2508. "scgi_buffering": {
  2509. "links": [
  2510. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_buffering"
  2511. ]
  2512. },
  2513. "scgi_buffers": {
  2514. "links": [
  2515. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_buffers"
  2516. ]
  2517. },
  2518. "scgi_busy_buffers_size": {
  2519. "links": [
  2520. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_busy_buffers_size"
  2521. ]
  2522. },
  2523. "scgi_cache": {
  2524. "links": [
  2525. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_cache"
  2526. ]
  2527. },
  2528. "scgi_cache_background_update": {
  2529. "links": [
  2530. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_cache_background_update"
  2531. ]
  2532. },
  2533. "scgi_cache_bypass": {
  2534. "links": [
  2535. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_cache_bypass"
  2536. ]
  2537. },
  2538. "scgi_cache_key": {
  2539. "links": [
  2540. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_cache_key"
  2541. ]
  2542. },
  2543. "scgi_cache_lock": {
  2544. "links": [
  2545. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_cache_lock"
  2546. ]
  2547. },
  2548. "scgi_cache_lock_age": {
  2549. "links": [
  2550. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_cache_lock_age"
  2551. ]
  2552. },
  2553. "scgi_cache_lock_timeout": {
  2554. "links": [
  2555. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_cache_lock_timeout"
  2556. ]
  2557. },
  2558. "scgi_cache_max_range_offset": {
  2559. "links": [
  2560. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_cache_max_range_offset"
  2561. ]
  2562. },
  2563. "scgi_cache_methods": {
  2564. "links": [
  2565. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_cache_methods"
  2566. ]
  2567. },
  2568. "scgi_cache_min_uses": {
  2569. "links": [
  2570. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_cache_min_uses"
  2571. ]
  2572. },
  2573. "scgi_cache_path": {
  2574. "links": [
  2575. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_cache_path"
  2576. ]
  2577. },
  2578. "scgi_cache_purge": {
  2579. "links": [
  2580. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_cache_purge"
  2581. ]
  2582. },
  2583. "scgi_cache_revalidate": {
  2584. "links": [
  2585. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_cache_revalidate"
  2586. ]
  2587. },
  2588. "scgi_cache_use_stale": {
  2589. "links": [
  2590. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_cache_use_stale"
  2591. ]
  2592. },
  2593. "scgi_cache_valid": {
  2594. "links": [
  2595. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_cache_valid"
  2596. ]
  2597. },
  2598. "scgi_connect_timeout": {
  2599. "links": [
  2600. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_connect_timeout"
  2601. ]
  2602. },
  2603. "scgi_force_ranges": {
  2604. "links": [
  2605. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_force_ranges"
  2606. ]
  2607. },
  2608. "scgi_hide_header": {
  2609. "links": [
  2610. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_hide_header"
  2611. ]
  2612. },
  2613. "scgi_ignore_client_abort": {
  2614. "links": [
  2615. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_ignore_client_abort"
  2616. ]
  2617. },
  2618. "scgi_ignore_headers": {
  2619. "links": [
  2620. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_ignore_headers"
  2621. ]
  2622. },
  2623. "scgi_intercept_errors": {
  2624. "links": [
  2625. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_intercept_errors"
  2626. ]
  2627. },
  2628. "scgi_limit_rate": {
  2629. "links": [
  2630. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_limit_rate"
  2631. ]
  2632. },
  2633. "scgi_max_temp_file_size": {
  2634. "links": [
  2635. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_max_temp_file_size"
  2636. ]
  2637. },
  2638. "scgi_next_upstream": {
  2639. "links": [
  2640. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_next_upstream"
  2641. ]
  2642. },
  2643. "scgi_next_upstream_timeout": {
  2644. "links": [
  2645. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_next_upstream_timeout"
  2646. ]
  2647. },
  2648. "scgi_next_upstream_tries": {
  2649. "links": [
  2650. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_next_upstream_tries"
  2651. ]
  2652. },
  2653. "scgi_no_cache": {
  2654. "links": [
  2655. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_no_cache"
  2656. ]
  2657. },
  2658. "scgi_param": {
  2659. "links": [
  2660. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_param"
  2661. ]
  2662. },
  2663. "scgi_pass": {
  2664. "links": [
  2665. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_pass"
  2666. ]
  2667. },
  2668. "scgi_pass_header": {
  2669. "links": [
  2670. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_pass_header"
  2671. ]
  2672. },
  2673. "scgi_pass_request_body": {
  2674. "links": [
  2675. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_pass_request_body"
  2676. ]
  2677. },
  2678. "scgi_pass_request_headers": {
  2679. "links": [
  2680. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_pass_request_headers"
  2681. ]
  2682. },
  2683. "scgi_read_timeout": {
  2684. "links": [
  2685. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_read_timeout"
  2686. ]
  2687. },
  2688. "scgi_request_buffering": {
  2689. "links": [
  2690. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_request_buffering"
  2691. ]
  2692. },
  2693. "scgi_send_timeout": {
  2694. "links": [
  2695. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_send_timeout"
  2696. ]
  2697. },
  2698. "scgi_socket_keepalive": {
  2699. "links": [
  2700. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_socket_keepalive"
  2701. ]
  2702. },
  2703. "scgi_store": {
  2704. "links": [
  2705. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_store"
  2706. ]
  2707. },
  2708. "scgi_store_access": {
  2709. "links": [
  2710. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_store_access"
  2711. ]
  2712. },
  2713. "scgi_temp_file_write_size": {
  2714. "links": [
  2715. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_temp_file_write_size"
  2716. ]
  2717. },
  2718. "scgi_temp_path": {
  2719. "links": [
  2720. "https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_temp_path"
  2721. ]
  2722. },
  2723. "scope": {
  2724. "links": [
  2725. "https://nginx.org/en/docs/http/ngx_http_oidc_module.html#scope"
  2726. ]
  2727. },
  2728. "secure_link": {
  2729. "links": [
  2730. "https://nginx.org/en/docs/http/ngx_http_secure_link_module.html#secure_link"
  2731. ]
  2732. },
  2733. "secure_link_md5": {
  2734. "links": [
  2735. "https://nginx.org/en/docs/http/ngx_http_secure_link_module.html#secure_link_md5"
  2736. ]
  2737. },
  2738. "secure_link_secret": {
  2739. "links": [
  2740. "https://nginx.org/en/docs/http/ngx_http_secure_link_module.html#secure_link_secret"
  2741. ]
  2742. },
  2743. "send_lowat": {
  2744. "links": [
  2745. "https://nginx.org/en/docs/http/ngx_http_core_module.html#send_lowat"
  2746. ]
  2747. },
  2748. "send_timeout": {
  2749. "links": [
  2750. "https://nginx.org/en/docs/http/ngx_http_core_module.html#send_timeout"
  2751. ]
  2752. },
  2753. "sendfile": {
  2754. "links": [
  2755. "https://nginx.org/en/docs/http/ngx_http_core_module.html#sendfile"
  2756. ]
  2757. },
  2758. "sendfile_max_chunk": {
  2759. "links": [
  2760. "https://nginx.org/en/docs/http/ngx_http_core_module.html#sendfile_max_chunk"
  2761. ]
  2762. },
  2763. "server": {
  2764. "links": [
  2765. "https://nginx.org/en/docs/http/ngx_http_core_module.html#server",
  2766. "https://nginx.org/en/docs/http/ngx_http_upstream_module.html#server",
  2767. "https://nginx.org/en/docs/mail/ngx_mail_core_module.html#server",
  2768. "https://nginx.org/en/docs/stream/ngx_stream_core_module.html#server",
  2769. "https://nginx.org/en/docs/stream/ngx_stream_upstream_module.html#server"
  2770. ]
  2771. },
  2772. "server_name": {
  2773. "links": [
  2774. "https://nginx.org/en/docs/http/ngx_http_core_module.html#server_name",
  2775. "https://nginx.org/en/docs/mail/ngx_mail_core_module.html#server_name",
  2776. "https://nginx.org/en/docs/stream/ngx_stream_core_module.html#server_name"
  2777. ]
  2778. },
  2779. "server_name_in_redirect": {
  2780. "links": [
  2781. "https://nginx.org/en/docs/http/ngx_http_core_module.html#server_name_in_redirect"
  2782. ]
  2783. },
  2784. "server_names_hash_bucket_size": {
  2785. "links": [
  2786. "https://nginx.org/en/docs/http/ngx_http_core_module.html#server_names_hash_bucket_size",
  2787. "https://nginx.org/en/docs/stream/ngx_stream_core_module.html#server_names_hash_bucket_size"
  2788. ]
  2789. },
  2790. "server_names_hash_max_size": {
  2791. "links": [
  2792. "https://nginx.org/en/docs/http/ngx_http_core_module.html#server_names_hash_max_size",
  2793. "https://nginx.org/en/docs/stream/ngx_stream_core_module.html#server_names_hash_max_size"
  2794. ]
  2795. },
  2796. "server_tokens": {
  2797. "links": [
  2798. "https://nginx.org/en/docs/http/ngx_http_core_module.html#server_tokens"
  2799. ]
  2800. },
  2801. "session_log": {
  2802. "links": [
  2803. "https://nginx.org/en/docs/http/ngx_http_session_log_module.html#session_log"
  2804. ]
  2805. },
  2806. "session_log_format": {
  2807. "links": [
  2808. "https://nginx.org/en/docs/http/ngx_http_session_log_module.html#session_log_format"
  2809. ]
  2810. },
  2811. "session_log_zone": {
  2812. "links": [
  2813. "https://nginx.org/en/docs/http/ngx_http_session_log_module.html#session_log_zone"
  2814. ]
  2815. },
  2816. "session_store": {
  2817. "links": [
  2818. "https://nginx.org/en/docs/http/ngx_http_oidc_module.html#session_store"
  2819. ]
  2820. },
  2821. "session_timeout": {
  2822. "links": [
  2823. "https://nginx.org/en/docs/http/ngx_http_oidc_module.html#session_timeout"
  2824. ]
  2825. },
  2826. "set": {
  2827. "links": [
  2828. "https://nginx.org/en/docs/http/ngx_http_rewrite_module.html#set",
  2829. "https://nginx.org/en/docs/stream/ngx_stream_set_module.html#set"
  2830. ]
  2831. },
  2832. "set_real_ip_from": {
  2833. "links": [
  2834. "https://nginx.org/en/docs/http/ngx_http_realip_module.html#set_real_ip_from",
  2835. "https://nginx.org/en/docs/mail/ngx_mail_realip_module.html#set_real_ip_from",
  2836. "https://nginx.org/en/docs/stream/ngx_stream_realip_module.html#set_real_ip_from"
  2837. ]
  2838. },
  2839. "slice": {
  2840. "links": [
  2841. "https://nginx.org/en/docs/http/ngx_http_slice_module.html#slice"
  2842. ]
  2843. },
  2844. "smtp_auth": {
  2845. "links": [
  2846. "https://nginx.org/en/docs/mail/ngx_mail_smtp_module.html#smtp_auth"
  2847. ]
  2848. },
  2849. "smtp_capabilities": {
  2850. "links": [
  2851. "https://nginx.org/en/docs/mail/ngx_mail_smtp_module.html#smtp_capabilities"
  2852. ]
  2853. },
  2854. "smtp_client_buffer": {
  2855. "links": [
  2856. "https://nginx.org/en/docs/mail/ngx_mail_smtp_module.html#smtp_client_buffer"
  2857. ]
  2858. },
  2859. "smtp_greeting_delay": {
  2860. "links": [
  2861. "https://nginx.org/en/docs/mail/ngx_mail_smtp_module.html#smtp_greeting_delay"
  2862. ]
  2863. },
  2864. "source_charset": {
  2865. "links": [
  2866. "https://nginx.org/en/docs/http/ngx_http_charset_module.html#source_charset"
  2867. ]
  2868. },
  2869. "split_clients": {
  2870. "links": [
  2871. "https://nginx.org/en/docs/http/ngx_http_split_clients_module.html#split_clients",
  2872. "https://nginx.org/en/docs/stream/ngx_stream_split_clients_module.html#split_clients"
  2873. ]
  2874. },
  2875. "ssi": {
  2876. "links": [
  2877. "https://nginx.org/en/docs/http/ngx_http_ssi_module.html#ssi"
  2878. ]
  2879. },
  2880. "ssi_last_modified": {
  2881. "links": [
  2882. "https://nginx.org/en/docs/http/ngx_http_ssi_module.html#ssi_last_modified"
  2883. ]
  2884. },
  2885. "ssi_min_file_chunk": {
  2886. "links": [
  2887. "https://nginx.org/en/docs/http/ngx_http_ssi_module.html#ssi_min_file_chunk"
  2888. ]
  2889. },
  2890. "ssi_silent_errors": {
  2891. "links": [
  2892. "https://nginx.org/en/docs/http/ngx_http_ssi_module.html#ssi_silent_errors"
  2893. ]
  2894. },
  2895. "ssi_types": {
  2896. "links": [
  2897. "https://nginx.org/en/docs/http/ngx_http_ssi_module.html#ssi_types"
  2898. ]
  2899. },
  2900. "ssi_value_length": {
  2901. "links": [
  2902. "https://nginx.org/en/docs/http/ngx_http_ssi_module.html#ssi_value_length"
  2903. ]
  2904. },
  2905. "ssl": {
  2906. "links": [
  2907. "https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl",
  2908. "https://nginx.org/en/docs/mail/ngx_mail_ssl_module.html#ssl"
  2909. ]
  2910. },
  2911. "ssl_alpn": {
  2912. "links": [
  2913. "https://nginx.org/en/docs/stream/ngx_stream_ssl_module.html#ssl_alpn"
  2914. ]
  2915. },
  2916. "ssl_buffer_size": {
  2917. "links": [
  2918. "https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_buffer_size"
  2919. ]
  2920. },
  2921. "ssl_certificate": {
  2922. "links": [
  2923. "https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_certificate",
  2924. "https://nginx.org/en/docs/mail/ngx_mail_ssl_module.html#ssl_certificate",
  2925. "https://nginx.org/en/docs/stream/ngx_stream_ssl_module.html#ssl_certificate"
  2926. ]
  2927. },
  2928. "ssl_certificate_cache": {
  2929. "links": [
  2930. "https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_certificate_cache",
  2931. "https://nginx.org/en/docs/stream/ngx_stream_ssl_module.html#ssl_certificate_cache"
  2932. ]
  2933. },
  2934. "ssl_certificate_compression": {
  2935. "links": [
  2936. "https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_certificate_compression",
  2937. "https://nginx.org/en/docs/mail/ngx_mail_ssl_module.html#ssl_certificate_compression",
  2938. "https://nginx.org/en/docs/stream/ngx_stream_ssl_module.html#ssl_certificate_compression"
  2939. ]
  2940. },
  2941. "ssl_certificate_key": {
  2942. "links": [
  2943. "https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_certificate_key",
  2944. "https://nginx.org/en/docs/mail/ngx_mail_ssl_module.html#ssl_certificate_key",
  2945. "https://nginx.org/en/docs/stream/ngx_stream_ssl_module.html#ssl_certificate_key"
  2946. ]
  2947. },
  2948. "ssl_ciphers": {
  2949. "links": [
  2950. "https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_ciphers",
  2951. "https://nginx.org/en/docs/mail/ngx_mail_ssl_module.html#ssl_ciphers",
  2952. "https://nginx.org/en/docs/stream/ngx_stream_ssl_module.html#ssl_ciphers"
  2953. ]
  2954. },
  2955. "ssl_client_certificate": {
  2956. "links": [
  2957. "https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_client_certificate",
  2958. "https://nginx.org/en/docs/mail/ngx_mail_ssl_module.html#ssl_client_certificate",
  2959. "https://nginx.org/en/docs/stream/ngx_stream_ssl_module.html#ssl_client_certificate"
  2960. ]
  2961. },
  2962. "ssl_conf_command": {
  2963. "links": [
  2964. "https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_conf_command",
  2965. "https://nginx.org/en/docs/mail/ngx_mail_ssl_module.html#ssl_conf_command",
  2966. "https://nginx.org/en/docs/stream/ngx_stream_ssl_module.html#ssl_conf_command"
  2967. ]
  2968. },
  2969. "ssl_crl": {
  2970. "links": [
  2971. "https://nginx.org/en/docs/http/ngx_http_oidc_module.html#ssl_crl",
  2972. "https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_crl",
  2973. "https://nginx.org/en/docs/mail/ngx_mail_ssl_module.html#ssl_crl",
  2974. "https://nginx.org/en/docs/stream/ngx_stream_ssl_module.html#ssl_crl",
  2975. "https://nginx.org/en/docs/ngx_mgmt_module.html#ssl_crl"
  2976. ]
  2977. },
  2978. "ssl_dhparam": {
  2979. "links": [
  2980. "https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_dhparam",
  2981. "https://nginx.org/en/docs/mail/ngx_mail_ssl_module.html#ssl_dhparam",
  2982. "https://nginx.org/en/docs/stream/ngx_stream_ssl_module.html#ssl_dhparam"
  2983. ]
  2984. },
  2985. "ssl_early_data": {
  2986. "links": [
  2987. "https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_early_data"
  2988. ]
  2989. },
  2990. "ssl_ecdh_curve": {
  2991. "links": [
  2992. "https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_ecdh_curve",
  2993. "https://nginx.org/en/docs/mail/ngx_mail_ssl_module.html#ssl_ecdh_curve",
  2994. "https://nginx.org/en/docs/stream/ngx_stream_ssl_module.html#ssl_ecdh_curve"
  2995. ]
  2996. },
  2997. "ssl_engine": {
  2998. "links": [
  2999. "https://nginx.org/en/docs/ngx_core_module.html#ssl_engine"
  3000. ]
  3001. },
  3002. "ssl_handshake_timeout": {
  3003. "links": [
  3004. "https://nginx.org/en/docs/stream/ngx_stream_ssl_module.html#ssl_handshake_timeout"
  3005. ]
  3006. },
  3007. "ssl_key_log": {
  3008. "links": [
  3009. "https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_key_log",
  3010. "https://nginx.org/en/docs/stream/ngx_stream_ssl_module.html#ssl_key_log"
  3011. ]
  3012. },
  3013. "ssl_object_cache_inheritable": {
  3014. "links": [
  3015. "https://nginx.org/en/docs/ngx_core_module.html#ssl_object_cache_inheritable"
  3016. ]
  3017. },
  3018. "ssl_ocsp": {
  3019. "links": [
  3020. "https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_ocsp",
  3021. "https://nginx.org/en/docs/stream/ngx_stream_ssl_module.html#ssl_ocsp"
  3022. ]
  3023. },
  3024. "ssl_ocsp_cache": {
  3025. "links": [
  3026. "https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_ocsp_cache",
  3027. "https://nginx.org/en/docs/stream/ngx_stream_ssl_module.html#ssl_ocsp_cache"
  3028. ]
  3029. },
  3030. "ssl_ocsp_responder": {
  3031. "links": [
  3032. "https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_ocsp_responder",
  3033. "https://nginx.org/en/docs/stream/ngx_stream_ssl_module.html#ssl_ocsp_responder"
  3034. ]
  3035. },
  3036. "ssl_password_file": {
  3037. "links": [
  3038. "https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_password_file",
  3039. "https://nginx.org/en/docs/mail/ngx_mail_ssl_module.html#ssl_password_file",
  3040. "https://nginx.org/en/docs/stream/ngx_stream_ssl_module.html#ssl_password_file"
  3041. ]
  3042. },
  3043. "ssl_prefer_server_ciphers": {
  3044. "links": [
  3045. "https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_prefer_server_ciphers",
  3046. "https://nginx.org/en/docs/mail/ngx_mail_ssl_module.html#ssl_prefer_server_ciphers",
  3047. "https://nginx.org/en/docs/stream/ngx_stream_ssl_module.html#ssl_prefer_server_ciphers"
  3048. ]
  3049. },
  3050. "ssl_preread": {
  3051. "links": [
  3052. "https://nginx.org/en/docs/stream/ngx_stream_ssl_preread_module.html#ssl_preread"
  3053. ]
  3054. },
  3055. "ssl_protocols": {
  3056. "links": [
  3057. "https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_protocols",
  3058. "https://nginx.org/en/docs/mail/ngx_mail_ssl_module.html#ssl_protocols",
  3059. "https://nginx.org/en/docs/stream/ngx_stream_ssl_module.html#ssl_protocols"
  3060. ]
  3061. },
  3062. "ssl_reject_handshake": {
  3063. "links": [
  3064. "https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_reject_handshake",
  3065. "https://nginx.org/en/docs/stream/ngx_stream_ssl_module.html#ssl_reject_handshake"
  3066. ]
  3067. },
  3068. "ssl_session_cache": {
  3069. "links": [
  3070. "https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_session_cache",
  3071. "https://nginx.org/en/docs/mail/ngx_mail_ssl_module.html#ssl_session_cache",
  3072. "https://nginx.org/en/docs/stream/ngx_stream_ssl_module.html#ssl_session_cache"
  3073. ]
  3074. },
  3075. "ssl_session_ticket_key": {
  3076. "links": [
  3077. "https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_session_ticket_key",
  3078. "https://nginx.org/en/docs/mail/ngx_mail_ssl_module.html#ssl_session_ticket_key",
  3079. "https://nginx.org/en/docs/stream/ngx_stream_ssl_module.html#ssl_session_ticket_key"
  3080. ]
  3081. },
  3082. "ssl_session_tickets": {
  3083. "links": [
  3084. "https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_session_tickets",
  3085. "https://nginx.org/en/docs/mail/ngx_mail_ssl_module.html#ssl_session_tickets",
  3086. "https://nginx.org/en/docs/stream/ngx_stream_ssl_module.html#ssl_session_tickets"
  3087. ]
  3088. },
  3089. "ssl_session_timeout": {
  3090. "links": [
  3091. "https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_session_timeout",
  3092. "https://nginx.org/en/docs/mail/ngx_mail_ssl_module.html#ssl_session_timeout",
  3093. "https://nginx.org/en/docs/stream/ngx_stream_ssl_module.html#ssl_session_timeout"
  3094. ]
  3095. },
  3096. "ssl_stapling": {
  3097. "links": [
  3098. "https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_stapling",
  3099. "https://nginx.org/en/docs/stream/ngx_stream_ssl_module.html#ssl_stapling"
  3100. ]
  3101. },
  3102. "ssl_stapling_file": {
  3103. "links": [
  3104. "https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_stapling_file",
  3105. "https://nginx.org/en/docs/stream/ngx_stream_ssl_module.html#ssl_stapling_file"
  3106. ]
  3107. },
  3108. "ssl_stapling_responder": {
  3109. "links": [
  3110. "https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_stapling_responder",
  3111. "https://nginx.org/en/docs/stream/ngx_stream_ssl_module.html#ssl_stapling_responder"
  3112. ]
  3113. },
  3114. "ssl_stapling_verify": {
  3115. "links": [
  3116. "https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_stapling_verify",
  3117. "https://nginx.org/en/docs/stream/ngx_stream_ssl_module.html#ssl_stapling_verify"
  3118. ]
  3119. },
  3120. "ssl_trusted_certificate": {
  3121. "links": [
  3122. "https://nginx.org/en/docs/http/ngx_http_oidc_module.html#ssl_trusted_certificate",
  3123. "https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_trusted_certificate",
  3124. "https://nginx.org/en/docs/http/ngx_http_acme_module.html#ssl_trusted_certificate",
  3125. "https://nginx.org/en/docs/mail/ngx_mail_ssl_module.html#ssl_trusted_certificate",
  3126. "https://nginx.org/en/docs/stream/ngx_stream_ssl_module.html#ssl_trusted_certificate",
  3127. "https://nginx.org/en/docs/ngx_mgmt_module.html#ssl_trusted_certificate"
  3128. ]
  3129. },
  3130. "ssl_verify": {
  3131. "links": [
  3132. "https://nginx.org/en/docs/http/ngx_http_acme_module.html#ssl_verify",
  3133. "https://nginx.org/en/docs/ngx_mgmt_module.html#ssl_verify"
  3134. ]
  3135. },
  3136. "ssl_verify_client": {
  3137. "links": [
  3138. "https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_verify_client",
  3139. "https://nginx.org/en/docs/mail/ngx_mail_ssl_module.html#ssl_verify_client",
  3140. "https://nginx.org/en/docs/stream/ngx_stream_ssl_module.html#ssl_verify_client"
  3141. ]
  3142. },
  3143. "ssl_verify_depth": {
  3144. "links": [
  3145. "https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_verify_depth",
  3146. "https://nginx.org/en/docs/mail/ngx_mail_ssl_module.html#ssl_verify_depth",
  3147. "https://nginx.org/en/docs/stream/ngx_stream_ssl_module.html#ssl_verify_depth"
  3148. ]
  3149. },
  3150. "stall_threshold": {
  3151. "links": [
  3152. "https://nginx.org/en/docs/ngx_core_module.html#stall_threshold"
  3153. ]
  3154. },
  3155. "starttls": {
  3156. "links": [
  3157. "https://nginx.org/en/docs/mail/ngx_mail_ssl_module.html#starttls"
  3158. ]
  3159. },
  3160. "state": {
  3161. "links": [
  3162. "https://nginx.org/en/docs/http/ngx_http_upstream_module.html#state",
  3163. "https://nginx.org/en/docs/stream/ngx_stream_upstream_module.html#state"
  3164. ]
  3165. },
  3166. "state_path": {
  3167. "links": [
  3168. "https://nginx.org/en/docs/http/ngx_http_acme_module.html#state_path",
  3169. "https://nginx.org/en/docs/ngx_mgmt_module.html#state_path"
  3170. ]
  3171. },
  3172. "status": {
  3173. "links": [
  3174. "https://nginx.org/en/docs/http/ngx_http_status_module.html#status"
  3175. ]
  3176. },
  3177. "status_format": {
  3178. "links": [
  3179. "https://nginx.org/en/docs/http/ngx_http_status_module.html#status_format"
  3180. ]
  3181. },
  3182. "status_zone": {
  3183. "links": [
  3184. "https://nginx.org/en/docs/http/ngx_http_api_module.html#status_zone",
  3185. "https://nginx.org/en/docs/http/ngx_http_status_module.html#status_zone"
  3186. ]
  3187. },
  3188. "sticky": {
  3189. "links": [
  3190. "https://nginx.org/en/docs/http/ngx_http_upstream_module.html#sticky"
  3191. ]
  3192. },
  3193. "sticky_cookie_insert": {
  3194. "links": [
  3195. "https://nginx.org/en/docs/http/ngx_http_upstream_module.html#sticky_cookie_insert"
  3196. ]
  3197. },
  3198. "stream": {
  3199. "links": [
  3200. "https://nginx.org/en/docs/stream/ngx_stream_core_module.html#stream"
  3201. ]
  3202. },
  3203. "stub_status": {
  3204. "links": [
  3205. "https://nginx.org/en/docs/http/ngx_http_stub_status_module.html#stub_status"
  3206. ]
  3207. },
  3208. "sub_filter": {
  3209. "links": [
  3210. "https://nginx.org/en/docs/http/ngx_http_sub_module.html#sub_filter"
  3211. ]
  3212. },
  3213. "sub_filter_last_modified": {
  3214. "links": [
  3215. "https://nginx.org/en/docs/http/ngx_http_sub_module.html#sub_filter_last_modified"
  3216. ]
  3217. },
  3218. "sub_filter_once": {
  3219. "links": [
  3220. "https://nginx.org/en/docs/http/ngx_http_sub_module.html#sub_filter_once"
  3221. ]
  3222. },
  3223. "sub_filter_types": {
  3224. "links": [
  3225. "https://nginx.org/en/docs/http/ngx_http_sub_module.html#sub_filter_types"
  3226. ]
  3227. },
  3228. "subrequest_output_buffer_size": {
  3229. "links": [
  3230. "https://nginx.org/en/docs/http/ngx_http_core_module.html#subrequest_output_buffer_size"
  3231. ]
  3232. },
  3233. "tcp_nodelay": {
  3234. "links": [
  3235. "https://nginx.org/en/docs/http/ngx_http_core_module.html#tcp_nodelay",
  3236. "https://nginx.org/en/docs/stream/ngx_stream_core_module.html#tcp_nodelay"
  3237. ]
  3238. },
  3239. "tcp_nopush": {
  3240. "links": [
  3241. "https://nginx.org/en/docs/http/ngx_http_core_module.html#tcp_nopush"
  3242. ]
  3243. },
  3244. "thread_pool": {
  3245. "links": [
  3246. "https://nginx.org/en/docs/ngx_core_module.html#thread_pool"
  3247. ]
  3248. },
  3249. "timeout": {
  3250. "links": [
  3251. "https://nginx.org/en/docs/mail/ngx_mail_core_module.html#timeout"
  3252. ]
  3253. },
  3254. "timer_resolution": {
  3255. "links": [
  3256. "https://nginx.org/en/docs/ngx_core_module.html#timer_resolution"
  3257. ]
  3258. },
  3259. "try_files": {
  3260. "links": [
  3261. "https://nginx.org/en/docs/http/ngx_http_core_module.html#try_files"
  3262. ]
  3263. },
  3264. "types": {
  3265. "links": [
  3266. "https://nginx.org/en/docs/http/ngx_http_core_module.html#types"
  3267. ]
  3268. },
  3269. "types_hash_bucket_size": {
  3270. "links": [
  3271. "https://nginx.org/en/docs/http/ngx_http_core_module.html#types_hash_bucket_size"
  3272. ]
  3273. },
  3274. "types_hash_max_size": {
  3275. "links": [
  3276. "https://nginx.org/en/docs/http/ngx_http_core_module.html#types_hash_max_size"
  3277. ]
  3278. },
  3279. "underscores_in_headers": {
  3280. "links": [
  3281. "https://nginx.org/en/docs/http/ngx_http_core_module.html#underscores_in_headers"
  3282. ]
  3283. },
  3284. "uninitialized_variable_warn": {
  3285. "links": [
  3286. "https://nginx.org/en/docs/http/ngx_http_rewrite_module.html#uninitialized_variable_warn"
  3287. ]
  3288. },
  3289. "upstream": {
  3290. "links": [
  3291. "https://nginx.org/en/docs/http/ngx_http_upstream_module.html#upstream",
  3292. "https://nginx.org/en/docs/stream/ngx_stream_upstream_module.html#upstream"
  3293. ]
  3294. },
  3295. "upstream_conf": {
  3296. "links": [
  3297. "https://nginx.org/en/docs/http/ngx_http_upstream_conf_module.html#upstream_conf"
  3298. ]
  3299. },
  3300. "uri": {
  3301. "links": [
  3302. "https://nginx.org/en/docs/http/ngx_http_acme_module.html#uri"
  3303. ]
  3304. },
  3305. "usage_report": {
  3306. "links": [
  3307. "https://nginx.org/en/docs/ngx_mgmt_module.html#usage_report"
  3308. ]
  3309. },
  3310. "use": {
  3311. "links": [
  3312. "https://nginx.org/en/docs/ngx_core_module.html#use"
  3313. ]
  3314. },
  3315. "user": {
  3316. "links": [
  3317. "https://nginx.org/en/docs/ngx_core_module.html#user"
  3318. ]
  3319. },
  3320. "userid": {
  3321. "links": [
  3322. "https://nginx.org/en/docs/http/ngx_http_userid_module.html#userid"
  3323. ]
  3324. },
  3325. "userid_domain": {
  3326. "links": [
  3327. "https://nginx.org/en/docs/http/ngx_http_userid_module.html#userid_domain"
  3328. ]
  3329. },
  3330. "userid_expires": {
  3331. "links": [
  3332. "https://nginx.org/en/docs/http/ngx_http_userid_module.html#userid_expires"
  3333. ]
  3334. },
  3335. "userid_flags": {
  3336. "links": [
  3337. "https://nginx.org/en/docs/http/ngx_http_userid_module.html#userid_flags"
  3338. ]
  3339. },
  3340. "userid_mark": {
  3341. "links": [
  3342. "https://nginx.org/en/docs/http/ngx_http_userid_module.html#userid_mark"
  3343. ]
  3344. },
  3345. "userid_name": {
  3346. "links": [
  3347. "https://nginx.org/en/docs/http/ngx_http_userid_module.html#userid_name"
  3348. ]
  3349. },
  3350. "userid_p3p": {
  3351. "links": [
  3352. "https://nginx.org/en/docs/http/ngx_http_userid_module.html#userid_p3p"
  3353. ]
  3354. },
  3355. "userid_path": {
  3356. "links": [
  3357. "https://nginx.org/en/docs/http/ngx_http_userid_module.html#userid_path"
  3358. ]
  3359. },
  3360. "userid_service": {
  3361. "links": [
  3362. "https://nginx.org/en/docs/http/ngx_http_userid_module.html#userid_service"
  3363. ]
  3364. },
  3365. "userinfo": {
  3366. "links": [
  3367. "https://nginx.org/en/docs/http/ngx_http_oidc_module.html#userinfo"
  3368. ]
  3369. },
  3370. "uwsgi_bind": {
  3371. "links": [
  3372. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_bind"
  3373. ]
  3374. },
  3375. "uwsgi_buffer_size": {
  3376. "links": [
  3377. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_buffer_size"
  3378. ]
  3379. },
  3380. "uwsgi_buffering": {
  3381. "links": [
  3382. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_buffering"
  3383. ]
  3384. },
  3385. "uwsgi_buffers": {
  3386. "links": [
  3387. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_buffers"
  3388. ]
  3389. },
  3390. "uwsgi_busy_buffers_size": {
  3391. "links": [
  3392. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_busy_buffers_size"
  3393. ]
  3394. },
  3395. "uwsgi_cache": {
  3396. "links": [
  3397. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_cache"
  3398. ]
  3399. },
  3400. "uwsgi_cache_background_update": {
  3401. "links": [
  3402. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_cache_background_update"
  3403. ]
  3404. },
  3405. "uwsgi_cache_bypass": {
  3406. "links": [
  3407. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_cache_bypass"
  3408. ]
  3409. },
  3410. "uwsgi_cache_key": {
  3411. "links": [
  3412. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_cache_key"
  3413. ]
  3414. },
  3415. "uwsgi_cache_lock": {
  3416. "links": [
  3417. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_cache_lock"
  3418. ]
  3419. },
  3420. "uwsgi_cache_lock_age": {
  3421. "links": [
  3422. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_cache_lock_age"
  3423. ]
  3424. },
  3425. "uwsgi_cache_lock_timeout": {
  3426. "links": [
  3427. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_cache_lock_timeout"
  3428. ]
  3429. },
  3430. "uwsgi_cache_max_range_offset": {
  3431. "links": [
  3432. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_cache_max_range_offset"
  3433. ]
  3434. },
  3435. "uwsgi_cache_methods": {
  3436. "links": [
  3437. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_cache_methods"
  3438. ]
  3439. },
  3440. "uwsgi_cache_min_uses": {
  3441. "links": [
  3442. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_cache_min_uses"
  3443. ]
  3444. },
  3445. "uwsgi_cache_path": {
  3446. "links": [
  3447. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_cache_path"
  3448. ]
  3449. },
  3450. "uwsgi_cache_purge": {
  3451. "links": [
  3452. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_cache_purge"
  3453. ]
  3454. },
  3455. "uwsgi_cache_revalidate": {
  3456. "links": [
  3457. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_cache_revalidate"
  3458. ]
  3459. },
  3460. "uwsgi_cache_use_stale": {
  3461. "links": [
  3462. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_cache_use_stale"
  3463. ]
  3464. },
  3465. "uwsgi_cache_valid": {
  3466. "links": [
  3467. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_cache_valid"
  3468. ]
  3469. },
  3470. "uwsgi_connect_timeout": {
  3471. "links": [
  3472. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_connect_timeout"
  3473. ]
  3474. },
  3475. "uwsgi_force_ranges": {
  3476. "links": [
  3477. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_force_ranges"
  3478. ]
  3479. },
  3480. "uwsgi_hide_header": {
  3481. "links": [
  3482. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_hide_header"
  3483. ]
  3484. },
  3485. "uwsgi_ignore_client_abort": {
  3486. "links": [
  3487. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_ignore_client_abort"
  3488. ]
  3489. },
  3490. "uwsgi_ignore_headers": {
  3491. "links": [
  3492. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_ignore_headers"
  3493. ]
  3494. },
  3495. "uwsgi_intercept_errors": {
  3496. "links": [
  3497. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_intercept_errors"
  3498. ]
  3499. },
  3500. "uwsgi_limit_rate": {
  3501. "links": [
  3502. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_limit_rate"
  3503. ]
  3504. },
  3505. "uwsgi_max_temp_file_size": {
  3506. "links": [
  3507. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_max_temp_file_size"
  3508. ]
  3509. },
  3510. "uwsgi_modifier1": {
  3511. "links": [
  3512. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_modifier1"
  3513. ]
  3514. },
  3515. "uwsgi_modifier2": {
  3516. "links": [
  3517. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_modifier2"
  3518. ]
  3519. },
  3520. "uwsgi_next_upstream": {
  3521. "links": [
  3522. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_next_upstream"
  3523. ]
  3524. },
  3525. "uwsgi_next_upstream_timeout": {
  3526. "links": [
  3527. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_next_upstream_timeout"
  3528. ]
  3529. },
  3530. "uwsgi_next_upstream_tries": {
  3531. "links": [
  3532. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_next_upstream_tries"
  3533. ]
  3534. },
  3535. "uwsgi_no_cache": {
  3536. "links": [
  3537. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_no_cache"
  3538. ]
  3539. },
  3540. "uwsgi_param": {
  3541. "links": [
  3542. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_param"
  3543. ]
  3544. },
  3545. "uwsgi_pass": {
  3546. "links": [
  3547. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_pass"
  3548. ]
  3549. },
  3550. "uwsgi_pass_header": {
  3551. "links": [
  3552. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_pass_header"
  3553. ]
  3554. },
  3555. "uwsgi_pass_request_body": {
  3556. "links": [
  3557. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_pass_request_body"
  3558. ]
  3559. },
  3560. "uwsgi_pass_request_headers": {
  3561. "links": [
  3562. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_pass_request_headers"
  3563. ]
  3564. },
  3565. "uwsgi_read_timeout": {
  3566. "links": [
  3567. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_read_timeout"
  3568. ]
  3569. },
  3570. "uwsgi_request_buffering": {
  3571. "links": [
  3572. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_request_buffering"
  3573. ]
  3574. },
  3575. "uwsgi_send_timeout": {
  3576. "links": [
  3577. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_send_timeout"
  3578. ]
  3579. },
  3580. "uwsgi_socket_keepalive": {
  3581. "links": [
  3582. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_socket_keepalive"
  3583. ]
  3584. },
  3585. "uwsgi_ssl_certificate": {
  3586. "links": [
  3587. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_ssl_certificate"
  3588. ]
  3589. },
  3590. "uwsgi_ssl_certificate_cache": {
  3591. "links": [
  3592. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_ssl_certificate_cache"
  3593. ]
  3594. },
  3595. "uwsgi_ssl_certificate_key": {
  3596. "links": [
  3597. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_ssl_certificate_key"
  3598. ]
  3599. },
  3600. "uwsgi_ssl_ciphers": {
  3601. "links": [
  3602. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_ssl_ciphers"
  3603. ]
  3604. },
  3605. "uwsgi_ssl_conf_command": {
  3606. "links": [
  3607. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_ssl_conf_command"
  3608. ]
  3609. },
  3610. "uwsgi_ssl_crl": {
  3611. "links": [
  3612. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_ssl_crl"
  3613. ]
  3614. },
  3615. "uwsgi_ssl_key_log": {
  3616. "links": [
  3617. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_ssl_key_log"
  3618. ]
  3619. },
  3620. "uwsgi_ssl_name": {
  3621. "links": [
  3622. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_ssl_name"
  3623. ]
  3624. },
  3625. "uwsgi_ssl_password_file": {
  3626. "links": [
  3627. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_ssl_password_file"
  3628. ]
  3629. },
  3630. "uwsgi_ssl_protocols": {
  3631. "links": [
  3632. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_ssl_protocols"
  3633. ]
  3634. },
  3635. "uwsgi_ssl_server_name": {
  3636. "links": [
  3637. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_ssl_server_name"
  3638. ]
  3639. },
  3640. "uwsgi_ssl_session_reuse": {
  3641. "links": [
  3642. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_ssl_session_reuse"
  3643. ]
  3644. },
  3645. "uwsgi_ssl_trusted_certificate": {
  3646. "links": [
  3647. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_ssl_trusted_certificate"
  3648. ]
  3649. },
  3650. "uwsgi_ssl_verify": {
  3651. "links": [
  3652. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_ssl_verify"
  3653. ]
  3654. },
  3655. "uwsgi_ssl_verify_depth": {
  3656. "links": [
  3657. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_ssl_verify_depth"
  3658. ]
  3659. },
  3660. "uwsgi_store": {
  3661. "links": [
  3662. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_store"
  3663. ]
  3664. },
  3665. "uwsgi_store_access": {
  3666. "links": [
  3667. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_store_access"
  3668. ]
  3669. },
  3670. "uwsgi_temp_file_write_size": {
  3671. "links": [
  3672. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_temp_file_write_size"
  3673. ]
  3674. },
  3675. "uwsgi_temp_path": {
  3676. "links": [
  3677. "https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_temp_path"
  3678. ]
  3679. },
  3680. "valid_referers": {
  3681. "links": [
  3682. "https://nginx.org/en/docs/http/ngx_http_referer_module.html#valid_referers"
  3683. ]
  3684. },
  3685. "variables_hash_bucket_size": {
  3686. "links": [
  3687. "https://nginx.org/en/docs/http/ngx_http_core_module.html#variables_hash_bucket_size",
  3688. "https://nginx.org/en/docs/stream/ngx_stream_core_module.html#variables_hash_bucket_size"
  3689. ]
  3690. },
  3691. "variables_hash_max_size": {
  3692. "links": [
  3693. "https://nginx.org/en/docs/http/ngx_http_core_module.html#variables_hash_max_size",
  3694. "https://nginx.org/en/docs/stream/ngx_stream_core_module.html#variables_hash_max_size"
  3695. ]
  3696. },
  3697. "worker_aio_requests": {
  3698. "links": [
  3699. "https://nginx.org/en/docs/ngx_core_module.html#worker_aio_requests"
  3700. ]
  3701. },
  3702. "worker_connections": {
  3703. "links": [
  3704. "https://nginx.org/en/docs/ngx_core_module.html#worker_connections"
  3705. ]
  3706. },
  3707. "worker_cpu_affinity": {
  3708. "links": [
  3709. "https://nginx.org/en/docs/ngx_core_module.html#worker_cpu_affinity"
  3710. ]
  3711. },
  3712. "worker_priority": {
  3713. "links": [
  3714. "https://nginx.org/en/docs/ngx_core_module.html#worker_priority"
  3715. ]
  3716. },
  3717. "worker_processes": {
  3718. "links": [
  3719. "https://nginx.org/en/docs/ngx_core_module.html#worker_processes"
  3720. ]
  3721. },
  3722. "worker_rlimit_core": {
  3723. "links": [
  3724. "https://nginx.org/en/docs/ngx_core_module.html#worker_rlimit_core"
  3725. ]
  3726. },
  3727. "worker_rlimit_nofile": {
  3728. "links": [
  3729. "https://nginx.org/en/docs/ngx_core_module.html#worker_rlimit_nofile"
  3730. ]
  3731. },
  3732. "worker_shutdown_timeout": {
  3733. "links": [
  3734. "https://nginx.org/en/docs/ngx_core_module.html#worker_shutdown_timeout"
  3735. ]
  3736. },
  3737. "working_directory": {
  3738. "links": [
  3739. "https://nginx.org/en/docs/ngx_core_module.html#working_directory"
  3740. ]
  3741. },
  3742. "xclient": {
  3743. "links": [
  3744. "https://nginx.org/en/docs/mail/ngx_mail_proxy_module.html#xclient"
  3745. ]
  3746. },
  3747. "xml_entities": {
  3748. "links": [
  3749. "https://nginx.org/en/docs/http/ngx_http_xslt_module.html#xml_entities"
  3750. ]
  3751. },
  3752. "xslt_last_modified": {
  3753. "links": [
  3754. "https://nginx.org/en/docs/http/ngx_http_xslt_module.html#xslt_last_modified"
  3755. ]
  3756. },
  3757. "xslt_param": {
  3758. "links": [
  3759. "https://nginx.org/en/docs/http/ngx_http_xslt_module.html#xslt_param"
  3760. ]
  3761. },
  3762. "xslt_string_param": {
  3763. "links": [
  3764. "https://nginx.org/en/docs/http/ngx_http_xslt_module.html#xslt_string_param"
  3765. ]
  3766. },
  3767. "xslt_stylesheet": {
  3768. "links": [
  3769. "https://nginx.org/en/docs/http/ngx_http_xslt_module.html#xslt_stylesheet"
  3770. ]
  3771. },
  3772. "xslt_types": {
  3773. "links": [
  3774. "https://nginx.org/en/docs/http/ngx_http_xslt_module.html#xslt_types"
  3775. ]
  3776. },
  3777. "zone": {
  3778. "links": [
  3779. "https://nginx.org/en/docs/http/ngx_http_upstream_module.html#zone",
  3780. "https://nginx.org/en/docs/stream/ngx_stream_upstream_module.html#zone"
  3781. ]
  3782. },
  3783. "zone_sync": {
  3784. "links": [
  3785. "https://nginx.org/en/docs/stream/ngx_stream_zone_sync_module.html#zone_sync"
  3786. ]
  3787. },
  3788. "zone_sync_buffers": {
  3789. "links": [
  3790. "https://nginx.org/en/docs/stream/ngx_stream_zone_sync_module.html#zone_sync_buffers"
  3791. ]
  3792. },
  3793. "zone_sync_connect_retry_interval": {
  3794. "links": [
  3795. "https://nginx.org/en/docs/stream/ngx_stream_zone_sync_module.html#zone_sync_connect_retry_interval"
  3796. ]
  3797. },
  3798. "zone_sync_connect_timeout": {
  3799. "links": [
  3800. "https://nginx.org/en/docs/stream/ngx_stream_zone_sync_module.html#zone_sync_connect_timeout"
  3801. ]
  3802. },
  3803. "zone_sync_interval": {
  3804. "links": [
  3805. "https://nginx.org/en/docs/stream/ngx_stream_zone_sync_module.html#zone_sync_interval"
  3806. ]
  3807. },
  3808. "zone_sync_recv_buffer_size": {
  3809. "links": [
  3810. "https://nginx.org/en/docs/stream/ngx_stream_zone_sync_module.html#zone_sync_recv_buffer_size"
  3811. ]
  3812. },
  3813. "zone_sync_server": {
  3814. "links": [
  3815. "https://nginx.org/en/docs/stream/ngx_stream_zone_sync_module.html#zone_sync_server"
  3816. ]
  3817. },
  3818. "zone_sync_ssl": {
  3819. "links": [
  3820. "https://nginx.org/en/docs/stream/ngx_stream_zone_sync_module.html#zone_sync_ssl"
  3821. ]
  3822. },
  3823. "zone_sync_ssl_certificate": {
  3824. "links": [
  3825. "https://nginx.org/en/docs/stream/ngx_stream_zone_sync_module.html#zone_sync_ssl_certificate"
  3826. ]
  3827. },
  3828. "zone_sync_ssl_certificate_key": {
  3829. "links": [
  3830. "https://nginx.org/en/docs/stream/ngx_stream_zone_sync_module.html#zone_sync_ssl_certificate_key"
  3831. ]
  3832. },
  3833. "zone_sync_ssl_ciphers": {
  3834. "links": [
  3835. "https://nginx.org/en/docs/stream/ngx_stream_zone_sync_module.html#zone_sync_ssl_ciphers"
  3836. ]
  3837. },
  3838. "zone_sync_ssl_conf_command": {
  3839. "links": [
  3840. "https://nginx.org/en/docs/stream/ngx_stream_zone_sync_module.html#zone_sync_ssl_conf_command"
  3841. ]
  3842. },
  3843. "zone_sync_ssl_crl": {
  3844. "links": [
  3845. "https://nginx.org/en/docs/stream/ngx_stream_zone_sync_module.html#zone_sync_ssl_crl"
  3846. ]
  3847. },
  3848. "zone_sync_ssl_name": {
  3849. "links": [
  3850. "https://nginx.org/en/docs/stream/ngx_stream_zone_sync_module.html#zone_sync_ssl_name"
  3851. ]
  3852. },
  3853. "zone_sync_ssl_password_file": {
  3854. "links": [
  3855. "https://nginx.org/en/docs/stream/ngx_stream_zone_sync_module.html#zone_sync_ssl_password_file"
  3856. ]
  3857. },
  3858. "zone_sync_ssl_protocols": {
  3859. "links": [
  3860. "https://nginx.org/en/docs/stream/ngx_stream_zone_sync_module.html#zone_sync_ssl_protocols"
  3861. ]
  3862. },
  3863. "zone_sync_ssl_server_name": {
  3864. "links": [
  3865. "https://nginx.org/en/docs/stream/ngx_stream_zone_sync_module.html#zone_sync_ssl_server_name"
  3866. ]
  3867. },
  3868. "zone_sync_ssl_trusted_certificate": {
  3869. "links": [
  3870. "https://nginx.org/en/docs/stream/ngx_stream_zone_sync_module.html#zone_sync_ssl_trusted_certificate"
  3871. ]
  3872. },
  3873. "zone_sync_ssl_verify": {
  3874. "links": [
  3875. "https://nginx.org/en/docs/stream/ngx_stream_zone_sync_module.html#zone_sync_ssl_verify"
  3876. ]
  3877. },
  3878. "zone_sync_ssl_verify_depth": {
  3879. "links": [
  3880. "https://nginx.org/en/docs/stream/ngx_stream_zone_sync_module.html#zone_sync_ssl_verify_depth"
  3881. ]
  3882. },
  3883. "zone_sync_timeout": {
  3884. "links": [
  3885. "https://nginx.org/en/docs/stream/ngx_stream_zone_sync_module.html#zone_sync_timeout"
  3886. ]
  3887. }
  3888. }