We're sorry but nginx-community doesn't work properly without JavaScript enabled. Please enable it to continue.
开源社区
首页
文章
问答
文档
软件下载
发现更多
三方插件
技术支持
电子书
公开课
社区贡献榜
关于我们
登录
注册
NGINX
负载均衡
JavaScript
NGINX Unit
Kubernetes
微服务
容器
NGINX系列
WAF
Node.js
Go(编程语言)
服务网格(Service Mesh)
HTTP/3_专栏
版本发布
# 三方插件
这里是有关 NGINX 第三方插件的汇聚之地。社区秉持着“开放,包容,沟通,贡献“的宗旨,致力于打造一个开放、活跃的 NGINX 爱好者之家,意在为所有 NGINX 的用户、开发者和技术爱好者,提供一个自由学习、深度交流、互动讨论、自我成长的平台。
关注标签
2人关注
文章
问答
排序
热门
最新
皮皮鲁
发布于2020-09-05 08:28
nginx-http-flv-module
感谢IgorSysoev,NGINX的作者。RomanArutyunyan,nginx-rtmp-module的作者。贡献者,详情见AUTHORS。功能nginx-rtmp-module提供的所有功能。nginx-http-flv-module的其他功能与nginx-rtmp-module的对比:功能nginx-http-flv-modulenginx-rtmp-module备注HTTP-FLV(播放)√x支持HTTPS-FLV和chunked回复GOP缓存√x虚拟主机√x省略listen配置√见备注配置中必须有一个listen纯音频支持√见备注wait_video或wait_key开启后无法工作reuseport支持√x定时打印访问记录√xJSON风格的stat√xstat中包含录制详情√x兼容性NGINX的版本应该大于或者等于1.2.6,与其他版本的兼容性未知。支持的系统Linux(推荐)/FreeBSD/MacOS/Windows(受限)。支持的播放器VLC (RTMP&HTTP-FLV)/OBS (RTMP&HTTP-FLV)/JWPlaye
点赞
3
浏览
8.5k
皮皮鲁
发布于2020-06-17 08:56
Nginx FTP 协议支持
概述 Nginx 从 1.9.0 开始加入了 stream 模块支持四层的代理,转发和负载均衡。但是,stream 模块的功能相对简单。对需要 ALG 处理的协议比如 FTP 的支持也远远不够。我试着去修改了 Nginx 的源代码,添加了alg模块。使之支持了 FTP主动模式和被动模式下的 ALG 功能。 Github 的源码地址为 : https://github.com/pei-jikui/nginx-alg。代码本身不困难,困难的是如何把代码模块化,有机地融入nginx原有的框架结构中,尽量少地修改已有的框架代码。而后者,需要对stream模块乃至nginx本身的框架和代码有一定的熟悉程度。图 1:FTP被动模式 数据连接 图2 :FTP主动模式 数据连接可能大家会说,Passive 模式不需要ALG 。准确
点赞
6
浏览
5.5k
皮皮鲁
发布于2020-08-21 10:14
nginx-upload-module
使用配置方式:install./configure--add-module={module_dir}&&make&&makeinstallconfserver{ listen80; client_max_body_size100m; location/{ roothtml/upload; } #Uploadformshouldbesubmittedtothislocation location/upload{ #Passalteredrequestbodytothislocation upload_pass/example.php; #Storefilestothisdirectory #Thedirectoryishashed,subdirectories0123456789shouldexist
点赞
3
浏览
4.4k
皮皮鲁
发布于2020-11-16 15:36
nginx-upstream-dynamic-resolve-servers
默认情况下,nginx只会在启动的时候解析一次upstream块里配置的域名。这个模块为server指令提供了resolve参数,可以异步解析upstream域名。如果你的upstream服务器的ip经常变动的化这个功能是非常有用的。另外,还提供了另外一个参数use_last,使用这个参数可以让nginx在dns解析超时的时候使用上一次的结果。如果你的域名不能正确解析,通常情况下nginx不会正常启动,使用了这个模块之后(server指令后面加resolve,如果不加这个域名还是走原生的流程,不会动态解析),我会在配置阶段把它替换成一个无用的ip,所以无需阻塞等待ngx_parse_url函数的返回值,无需担心,我会在进程的启动阶段把域名换回来并且进行动态解析。注意:和其它nginx第三方模块不同,在使用这个模块之前你需要对nginx原生代码进行一些修改。当然你也可以使用 https://github.com/GUI/nginx-upstream-dynamic-servers 里面的方式,也就是覆盖了原生的server指令,那样就不需要对原生的代码进行修改,只需要
点赞
1
浏览
4.9k
云原生
发布于2020-10-20 22:16
nginx-sticky-module-ng
Sticky是nginx的一个模块,它是基于cookie的一种nginx的负载均衡解决方案,通过分发和识别cookie,来使同一个客户端的请求落在同一台服务器上,默认标识名为route1.客户端首次发起访问请求,nginx接收后,发现请求头没有cookie,则以轮询方式将请求分发给后端服务器。2.后端服务器处理完请求,将响应数据返回给nginx。3.此时nginx生成带route的cookie,返回给客户端。route的值与后端服务器对应,可能是明文,也可能是md5、sha1等Hash值4.客户端接收请求,并保存带route的cookie。5.当客户端下一次发送请求时,会带上route,nginx根据接收到的cookie中的route值,转发给对应的后端服务器。NginxStickyModulemodifiedandextendedversion;seeChangelog.txtDescriptionAnginxmoduletoaddastickycookietobealwaysforwardedtothesameupstreamserve
点赞
0
浏览
4.7k
皮皮鲁
发布于2020-08-21 11:34
nginx-http-oauth-module
使用方法:1.创建tableCREATETABLE oauth_access_token (id int(10)NOTNULLAUTO_INCREMENT,access_token varchar(255)DEFAULTNULL,expires_in int(10)NOTNULL,last_used_time int(10)NOTNULL,PRIMARYKEY(id),KEY ACCESS_TOKEN (access_token))ENGINE=InnoDBDEFAULTCHARSET=utf8;2.安装Oauth模块cd/work/nginx-1.8.0&&./configure--add-module=/work/nginx-http-oauth-module&&make3.添加配置请参照源码连接中的nginx.conf 4.使用Oauth模块a)创建访问tokenhttp://192.168.1.104/token?appid=
点赞
3
浏览
3.3k
皮皮鲁
发布于2020-08-21 11:37
nginx-http-metric-module
模块配置使用:=================example================== >curlhttp://yourip/metric_status {"1xx":0,"2xx":21715,"3xx":48,"4xx":94,"5xx":2,"total":21859,"avg_time":0.036,"min_time":0.001,"max_time":10.484} =================nginx.conf=============== metric_zonesize=10Mmin_time=10msmax_time=10s; metricon; server{ listen80; location/{ roothtml; } location/metric_status{ metric_statuson; metricoff; } location/me
点赞
3
浏览
3k
皮皮鲁
发布于2020-08-21 11:47
websocket
使用配置方式:install{nginx_dir}/configure--add-module={module_dir}/ngx_http_websocket_module&&make&&makeinstall confworker_processes1; events{ worker_connections1024; } http{ includemime.types; default_typeapplication/octet-stream; server{ listen80; location/{ roothtml/websocket; indexindex.htmlindex.htm; } location/ws{ websocket; } } }
点赞
3
浏览
3.3k
皮皮鲁
发布于2020-10-10 23:45
ngx_google_perftools_profiler_module
ngx_google_perftools_profiler_moduleAbettertoolfornginxwithgoogle_perftools.Thismoduleisinspiredbyofficial ngx_google_perftools_module.InstallationAtfirstyoumustinstall gperftools library,Forexample:sudoapt-getinstallgoogle-perftools sudoapt-getinstalllibgoogle-perftools-dev Thenconfigurenginx,addthismodule:./configure--add-module=path/to/ngx_google_perftools_profiler_module make&&makeinstallConfigurationIn nginx.conf:#profiler=>cpu|heap|
点赞
2
浏览
2.9k
皮皮鲁
发布于2020-08-21 11:43
nginx-http-controller-module
功能简介:dynamicallyconfigconfigurationupdatesdynamicallyviaaRESTfulJSONAPI.variables.add_headers.upstreamzone.blacklistandwhitelist.limit_conn,limit_reqandlimit_rate.returnlocationandtext.statisticsdisplaystubandhttpstatuswithjsonformat.指令:ctrl_zonesyntax: ctrl_zonezone=NAME:SIZEcontext: httpCreatesasharedzone NAME withthe SIZE forstoringstatisticsdata.ctrlsyntax: ctrlon|offdefault: ctrloffcontext: http,server,locationct
点赞
3
浏览
2.7k
云原生
发布于2020-11-17 12:23
ngx_upstream_jdomain
AboutAnasynchronousdomainnameresolvemodulefornginxupstreamResources ReadmeReleasesNoreleasespublishedPackagesNopackagespublishedContributors 2rs OlivierPoitreyitpp16LanguagesC100.0%
点赞
0
浏览
3.2k
皮皮鲁
发布于2020-09-23 20:44
Nginx 配置文件生成器
✨ NGINXConfigNGINXissomuchmorethanjustawebserver.Youalreadyknewthat,probably.WeloveNGINX,because:lowmemoryusagehighconcurrencyasynchronousevent-drivenarchitectureloadbalancingreverseproxyingFastCGIsupportwithcaching(PHP)amazingfasthandlingofstaticfilesTLS/SSLwithSNIAlotoffeatureswithcorrespondingconfigurationdirectives.Youcandeepdiveintothe NGINXdocumentation rightnowORyoucanusethistooltocheckhowNGINXworks,observehowy
点赞
1
浏览
3.1k
皮皮鲁
发布于2020-11-06 22:40
zstd-nginx-module
Namezstd-nginx-module-Nginxmoduleforthe Zstandardcompression.TableofContentNameStatusSynopsisInstallationDirectivesngx_http_zstd_filter_modulezstd_dict_filezstdzstd_comp_levelzstd_min_lengthzstd_typeszstd_buffersngx_http_zstd_static_modulezstd_staticVariablesngx_http_zstd_filter_module$zstd_ratioAuthorStatusThisNginxmoduleiscurrentlyconsideredexperimental.IssuesandPRsarewelcomeifyouencounteranyproblems.Synopsis#specifythedictionary zstd_dict_file/path/to/dict;
点赞
0
浏览
3.2k
皮皮鲁
发布于2020-09-26 08:37
nginx_upstream_check_module
Name nginx_http_upstream_check_module-supportupstreamhealthcheckwith Nginx Synopsis http{ upstreamcluster{ #simpleround-robin server192.168.0.1:80; server192.168.0.2:80; checkinterval=5000rise=1fall=3timeout=4000; #checkinterval=3000rise=2fall=5timeout=1000type=ssl_hello; #checkinterval=3000rise=2fall=5timeout=1000type=http; #check_http_send"
点赞
0
浏览
2.6k
皮皮鲁
发布于2020-09-05 22:49
Nginx virtual host traffic status module
效果展示:ScreenshotsNginxvirtualhosttrafficstatusmoduleNginxvirtualhosttrafficstatusmoduleTableofContentsVersionDependenciesCompatibilityScreenshotsInstallationSynopsisDescriptionCalculationsandIntervalsControlTogetstatusoftrafficzonesontheflyTogetfullyzonesTogetgroupzonesTogeteachzonesToresettrafficzonesontheflyToresetfullyzonesToresetgroupzonesToreseteachzonesTodeletetrafficzonesontheflyTodeletefullyzonesTodeletegroupzonesTodeleteeachzon
点赞
1
浏览
2.8k
皮皮鲁
发布于2020-08-30 11:14
ngx_trace
安装使用:1)安装下载ngx_trace模块并且编译nginx %./configure--add-module=/path/to/ngx_trace&&make 确保nginx二进制代码可以工作 %./objs/nginx-V 准备nginx的运行环境 %mkdirmynginx %mkdirmynginx/logs %cp-rconfmynginx/ %cp-rhtmlmynginx/ 编辑nginx配置文件nginx.conf.确保nginx以前台模式运行在单进程结构下。还要确保使用的socket端口当前用户可以使用。 daemonoff; master_processoff; ... http{ server{ li
点赞
2
浏览
2.5k
皮皮鲁
发布于2020-10-31 14:44
headers-more-nginx-module
TableofContentsNameVersionSynopsisDescriptionDirectivesmore_set_headersmore_clear_headersmore_set_input_headersmore_clear_input_headersLimitationsInstallationCompatibilityCommunityEnglishMailingListChineseMailingListBugsandPatchesSourceRepositoryChangesTestSuiteTODOGettinginvolvedAuthorsCopyright&LicenseSeeAlsoVersionThisdocumentdescribesheaders-more-nginx-module v0.33 releasedon3November2017.Synopsis#settheServeroutputheader more_set_headers'Server:my-se
点赞
1
浏览
2.9k
皮皮鲁
发布于2020-11-19 22:44
redis2-nginx-module
Namengx_redis2-NginxupstreammodulefortheRedis2.0protocolThismoduleisnotdistributedwiththeNginxsource. See theinstallationinstructions.TableofContentsNameStatusVersionSynopsisDescriptionDirectivesredis2_queryredis2_raw_queryredis2_raw_queriesredis2_literal_raw_queryredis2_passredis2_connect_timeoutredis2_send_timeoutredis2_read_timeoutredis2_buffer_sizeredis2_next_upstreamConnectionPoolSelectingRedisDatabasesLuaInteroperabilityPipelinedRedisRequestsbyLuaRedi
点赞
0
浏览
2.7k
皮皮鲁
发布于2020-10-03 19:25
nginx-upsync-module
nginx-upsync-moduleNginxCmodule,whichcansyncupstreamsfromConsulorothers.Itdynamicallymodifiesbackend-serversattributes(weight,max_fails,...),withoutneedtoreloadNGINX.ItmaynotalwaysbeconvenienttomodifyconfigurationfilesandrestartNGINX.Forexample,ifyouareexperiencinglargeamountsoftrafficandhighload,restartingNGINXandreloadingtheconfigurationatthatpointfurtherincreasesloadonthesystemandcantemporarilydegradeperformance.Themoduleall
点赞
2
浏览
2.5k
皮皮鲁
发布于2020-12-29 19:08
NGINXConfig 实用的 Nginx 配置生成工具
特性SiteDomainPathDocumentrootwwwsubdomainCDNRedirectwwwtonon-wwwornon-wwwtowwwListenIPv4,IPv6HTTPSHTTPSHTTP2ForceHTTPSredirectHSTSSSLprofilesCertificationtypeLet'sEncryptCustomcertificateOCSPDNSresolversCloudflareResolverGooglePublicDNSOpenDNSSecurityReferrer-Policyno-referrerno-referrer-when-downgradeoriginorigin-when-cross-originsame-originstrict-originstrict-origin-when-cross-originunsafe-urlContent-Security-PolicyX-Frame-OptionsX-XSS-ProtectionX-Content-Type-Optionsserve
点赞
0
浏览
2.5k
皮皮鲁
发布于2020-10-11 08:41
nginx-module-stream-sts
NginxstreamservertrafficstatuscoremoduleNginxstreamservertrafficstatuscoremoduleTableofContentsVersionDependenciesScreenshotsInstallationSynopsisDescriptionVariablesDirectivesserver_traffic_statusserver_traffic_status_zoneserver_traffic_status_filterserver_traffic_status_filter_by_set_keyserver_traffic_status_filter_check_duplicateserver_traffic_status_limitserver_traffic_status_limit_trafficserver_traffic_status_limit_traffic_by_set_keyserver_traffic_status_limit_check_duplicatese
点赞
1
浏览
2.6k
皮皮鲁
发布于2020-09-26 08:40
ngx_http_substitutions_filter_module
nginx_substitutions_filter *Note:thismoduleisnotdistributedwiththeNginxsource. Installationinstructionscanbefoundbelow.* Description nginx_substitutions_filterisafiltermodulewhichcandobothregular expressionandfixedstringsubstitutionsonresponsebodies.This moduleisquitedifferentfromtheNginx'snativeSubstitutionModule. Itscanstheoutputchainsbufferandmatchesstringlinebyline,just likeApache'smod_substitute
点赞
0
浏览
2.5k
皮皮鲁
发布于2020-08-28 17:41
ngx_massive_chunker
配置:语法: server{ location/chunks{ mass_chunkon; mass_chunk_multi_packetson; } } 指令: mass_chunk 语法:mass_chunkon|off 默认:mass_chunkoff 使能massivechunking,将会按照10字节的chunk方式进行内容发送。 mass_chunk_multi_packets 语法:mass_chunk_multi_packetson|off 默认值:mass_chunk_multi_packetsoff 安装使用: cdnginx ./configure--add-module=/path/to/ngx_massive_chunker
点赞
2
浏览
2.4k
皮皮鲁
发布于2020-09-26 08:35
nginx_tcp_proxy_module
Namenginx_tcp_proxy_module-supportTCPproxywithNginxInstallationDownloadthelateststableversionofthereleasetarballofthismodulefromgithub(http://github.com/yaoweibin/nginx_tcp_proxy_module)Grabthenginxsourcecodefromnginx.org(http://nginx.org/),forexample,theversion1.2.1(seenginxcompatibility),andthenbuildthesourcewiththismodule:$wget'http://nginx.org/download/nginx-1.2.1.tar.gz' $tar-xzvfnginx-1.2.1.tar.gz $cdnginx-1.2.1/ $patch-p1
点赞
0
浏览
2.5k
皮皮鲁
发布于2020-12-29 20:15
Nginx Image Module
编译方法编译前请确认您的系统已经安装了libcurl-devlibgd2-devlibpcre-dev依赖库Debian/Ubuntu系统举例#如果你没有安装GCC相关环境才需要执行$sudoapt-getinstallbuild-essentialm4autoconfautomakemake $sudoapt-getinstalllibgd2-noxpm-devlibcurl4-openssl-devlibpcre3-devCentOS/RedHat/Fedora#请确保已经安装了gccautomakeautoconfm4 $sudoyuminstallgd-develpcre-devellibcurl-devel FreeBSD/NetBSD/OpenBSD#不多说了,自己用port把libcurl-devlibgd2-devlibpcre-dev装上吧#编译前请确保已经安装gccautomakeautoconfm4 Windows#也支持的,不过
点赞
0
浏览
2.2k
皮皮鲁
发布于2020-10-31 14:42
xss-nginx-module
TableofContentsNameSynopsisDescriptionDirectivesxss_getxss_callback_argxss_override_statusxss_check_statusxss_input_typesLimitationsTroubleShootingInstallationCompatibilityTODOAuthorCopyright&LicenseSeeAlsoSynopsis#accessing/foo?callback=processgivestheresponse #body"process(...);"(withoutquotes)where"..." #istheoriginalresponsebodyofthe/foolocation. server{ location/foo{ #yourcontenthandlergoeshere... xss_geton; xss_callbac
点赞
1
浏览
2.5k
Nginspher
发布于2020-09-23 15:16
ngx_cache_purge
模块功能:ngx_cache_purgeisnginxmodulewhichaddsabilitytopurgecontentfromFastCGI,proxy,SCGIanduWSGIcaches.Apurgeoperationremovesthecontentwiththesamecachekeyasthepurgerequesthas.可以通过请求URL的方式来清理缓存,让缓存失效 proxy_cache_purgesyntax:proxy_cache_purgeon|off|[purge_all][fromall|[..]] default:none context:http,server,location Allowpurgingofselectedpagesfromproxy'scache. 配置案例: http{ proxy_cache_path/tmp/cachekeys_zone=tmpcache:10m; server{
点赞
1
浏览
2.3k
皮皮鲁
发布于2020-09-26 09:06
nginx-sticky-module
Description: Anginxmoduletoaddastickycookietobealwaysforwardedthethesame upstreamserver. Whendealingwithseveralbackendservers,it'ssometimesusefulthatone client(browser)isalwaysservedbythesamebackendserver (forsessionpersistanceforexample). UsingapersistancebyIP(withtheip_hashupstreammodule)ismaybenot agoodideabecausetherecouldbesituationswherealotofdifferent browsersarecomingwiththesameIPaddress(behindproxie
点赞
1
浏览
2.4k
皮皮鲁
发布于2020-09-26 08:48
nginx_limit_speed_module
=Synopsis=Thismodulemakesitpossibletolimitthetotalspeedofsimultaneous connectionsfortheassignedsessionorasaspecialcase,fromoneaddress. Exampleconfiguration http{ limit_speed_zoneone$binary_remote_addr10m; server{ location/download/{ limit_speedone100k; } } } =Directives= ==limit_speed_zone== '''syntax:'''''limit_speed_zonezone_name$variablememory_max_size'' '''default:'''''no''
点赞
0
浏览
2.3k
皮皮鲁
发布于2020-09-23 21:35
Nginx HTTP push操作模块
NginxPushStreamModuleApurestreamhttppushtechnologyforyourNginxsetup.Comet madeeasyand reallyscalable.Supports EventSource, WebSocket,LongPolling,andForeverIframe.See someexamples bellow.ThismoduleisnotdistributedwiththeNginxsource.See theinstallationinstructions.Availableongithubat nginx_push_stream_moduleChangelogAlwaystakealookat CHANGELOG.textile toseewhat’snew.ContributeAfteryoutrythismoduleand
点赞
1
浏览
2.2k
皮皮鲁
发布于2020-12-29 19:20
ngx_slowfs_cache
配置示例:http { slowfs_cache_path /tmp/cache levels=1:2 keys_zone=fastcache:10m; slowfs_temp_path /tmp/temp 1 2; server { location / { root /v
点赞
0
浏览
2.2k
皮皮鲁
发布于2020-09-04 15:34
Nginx Module for Google Access
使用:location/{ googleon; }模块依赖: pcre 正则表达式支持ngx_http_proxy_module 后端代理支持ngx_http_substitutions_filter_module 多替代支持安装: 源码: 1.下载nginx代码 wgethttp://nginx.org/download/nginx-1.7.8.tar.gz 2.下载模块 gitclonehttps://github.com/cuber/ngx_htt
点赞
1
浏览
2.2k
皮皮鲁
发布于2020-09-16 18:46
Nginx Selective Cache Purge Module
使用配置:举例:pidlogs/nginx.pid; error_loglogs/nginx-main_error.logdebug; #DevelopmentMode #master_processoff; #daemonoff; worker_processes1; worker_rlimit_core500M; working_directory/tmp; debug_pointsabort; events{ worker_connections1024; #usekqueue;#MacOS useepoll;#Linux } http{ default_typeapplication/octet-stream; access_loglogs/nginx-http_access.log; er
点赞
1
浏览
2.3k
皮皮鲁
发布于2020-10-02 20:55
chunkin-nginx-module
Namengx_chunkin -HTTP1.1chunked-encodingrequestbodysupportforNginx.ThismoduleisnotdistributedwiththeNginxsource. See theinstallationinstructions.TableofContentsStatusVersionSynopsisDescriptionHowitworksDirectiveschunkinchunkin_resumechunkin_max_chunks_per_bufchunkin_keepaliveInstallationInstallationonUbuntu10.04LTSusingapt/dpkgForDevelopersPackagesfromusersFedora13RPMfilesNginxCompatibilityCommunityEnglishMailingListChineseMailingListBugsand
点赞
1
浏览
2.2k
皮皮鲁
发布于2020-11-06 22:45
ngx_sqlite
Aboutngx_sqlite-Simpleembeddedsqlitefornginx-module.Resources ReadmeLicense BSD-2-ClauseLicenseReleasesNoreleasespublishedPackagesNopackagespublishedContributors 3rryqszq4yw662 yw662jaygooby JayCaines-GoobyLanguagesC94.5% Shell3.7% Perl1.8%
点赞
0
浏览
2.3k
皮皮鲁
发布于2020-10-11 08:06
replace-filter-nginx-module
Namengx_replace_filter-Streamingregularexpressionreplacementinresponsebodies.ThismoduleisnotdistributedwiththeNginxsource. See theinstallationinstructions.TableofContentsNameStatusSynopsisDescriptionDirectivesreplace_filterreplace_filter_typesreplace_filter_max_buffered_sizereplace_filter_last_modifiedreplace_filter_skipInstallationTroubleShootingTODOCommunityEnglishMailingListChineseMailingListBugsandPatchesAuthorCopyrightandLicenseSeeAlsoStatusThismodul
点赞
1
浏览
2.3k
云原生
发布于2020-11-06 22:28
NAXSI
WhatisNaxsi?NAXSImeans Nginx Anti XSS & SQLInjection.Technically,itisathirdpartynginxmodule,availableasapackageformanyUNIX-likeplatforms.Thismodule,bydefault,readsasmallsubsetof simple(andreadable)rules containing99%ofknownpatternsinvolvedinwebsitevulnerabilities.Forexample,
点赞
0
浏览
2.2k
皮皮鲁
发布于2020-10-31 14:48
ngx_postgres
StatusThismoduleisproduction-readyandit'scompatiblewithfollowingnginxreleases:0.7.x(testedwith0.7.60to0.7.69),0.8.x(testedwith0.8.0to0.8.55),0.9.x(testedwith0.9.0to0.9.7),1.0.x(testedwith1.0.0to1.0.11),1.1.x(testedwith1.1.0to1.1.12).1.2.x(testedwith1.2.3to1.2.3).1.3.x(testedwith1.3.4to1.3.4).Configurationdirectivespostgres_serversyntax: postgres_serverip[:port]dbname=dbnameuser=userpassword=passdefault: nonecontext: upstreamSetdet
点赞
1
浏览
2.2k
皮皮鲁
发布于2020-10-11 08:28
nginx-module-sysguard
NginxsysguardmoduleTableofContentsVersionDependenciesCompatibilityInstallationSynopsisDescriptionEmbeddedVariablesDirectivessysguardsysguard_loadsysguard_memsysguard_rtsysguard_modesysguard_intervalsysguard_log_levelSeeAlsoTODODonationAuthorVersionThisdocumentdescribesnginx-module-sysguard v0.1.0 releasedon23Feb2017.Dependenciesnginxsysinfo(2)|getloadavg(3)/proc/meminfoCompatibility1.11.x(lasttested:1.11.10)Earlierversionsisnottested.InstallationClonethegitrepo
点赞
1
浏览
2.2k
皮皮鲁
发布于2020-11-24 10:05
nginx_upstream_check_modue
Nginxhttpupstreamcheckstatus Nginxhttpupstreamcheckstatus Checkupstreamservernumber:1,generation:3 Index Upstream Name Status Risecounts Fallcounts Checktype Checkport 0 backend 106.187.48.116:80
点赞
0
浏览
2.2k
查看更多文章
发表文章
提问
社区达人
成为达人
陶辉
暂无个人介绍
关注
洪志道
暂无个人介绍
关注
皮皮鲁
暂无个人介绍
关注
加菲
暂无个人介绍
关注
lwl
暂无个人介绍
关注
相关文章
nginx_upstream_hash
nginx_upstream_hash:url_hash是nginx的第三方模块,nginx本身不支持,需要第三方模块。nginx在做负载均衡的时,把转发的URL以hash的形式保存。这样可以保证同一
BUG退散
发布于2023-03-22 14:41
保持联系
微信公众号
加入微信群
获取商业支持
了解商业产品和专业支持服务
加入邮件列表
向开发组提交代码或反馈意见