├── .gitignore ├── README.md ├── conf └── .gitkeep ├── generateConf.sh ├── nginx.http.tpl ├── nginx.server.tpl └── updateBlocklist.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemedia-tech/nginx-rugov-block/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemedia-tech/nginx-rugov-block/HEAD/README.md -------------------------------------------------------------------------------- /conf/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generateConf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemedia-tech/nginx-rugov-block/HEAD/generateConf.sh -------------------------------------------------------------------------------- /nginx.http.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemedia-tech/nginx-rugov-block/HEAD/nginx.http.tpl -------------------------------------------------------------------------------- /nginx.server.tpl: -------------------------------------------------------------------------------- 1 | if ($fmt_rugov = "RUGOV" ) { return 499; } 2 | 3 | -------------------------------------------------------------------------------- /updateBlocklist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemedia-tech/nginx-rugov-block/HEAD/updateBlocklist.sh --------------------------------------------------------------------------------