# nglua-fly **Repository Path**: fqing/nglua-fly ## Basic Information - **Project Name**: nglua-fly - **Description**: 动态管理nginx负载均衡 - **Primary Language**: C - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 37 - **Forks**: 6 - **Created**: 2015-09-21 - **Last Updated**: 2024-01-11 ## Categories & Tags **Categories**: nginx-modules **Tags**: None ## README #nglua-fly ## config upstream a-backend { zone nglua-fly 128k; 192.168.1.101:81; 192.168.1.101:82; 192.168.1.101:83; } upstream b-backend { zone nglua-fly 128k; 192.168.1.102:81; 192.168.1.102:82; 192.168.1.102:83; } server { location /fly { fly on; } location /assets { alias html/fly; } } ##install > ./configure --add-module={src}/nginx-http-fly-module && make > cp -R {src}/html/fly > {dst}/html