nginx_directives.json 105 KB

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