Plugin request: Throttle the FCC to dial up modem speeds on your website – Nginx
-
Are there any plugin creators who would be interested in putting this together for the WordPress community? The more WP sites running this type of plugin the wider we can spread the message.
I can imagine someone expanding this idea to include a note to inform visitors of the site that they can write to the FCC via a public comment, call on sites like Google, Yahoo!, Microsoft, Facebook, Twitter, etc. to implement something like this, or any number of other ways to raise awareness of how the Internet could be affected by the proposed “fast lane” concept.
How to throttle the FCC to dial up modem speeds on your website using Nginx
https://gist.github.com/kyledrake/e6046644115f185f7af0# The blog post that started it all: https://neocities.org/blog/the-fcc-is-now-rate-limited # # Current known FCC address ranges: # https://news.ycombinator.com/item?id=7716915 # # Confirm/locate FCC IP ranges with this: https://whois.arin.net/rest/net/NET-165-135-0-0-1/pft # # In your nginx.conf: location / { if ( $remote_addr ~* 192.133.125.0/24 ) { limit_rate 3k; } if ( $remote_addr ~* 165.135.0.0/16 ) { limit_rate 3k; } if ( $remote_addr ~* 192.104.54.0/24 ) { limit_rate 3k; } if ( $remote_addr ~* 4.21.126.0/24 ) { limit_rate 3k; } if ( $remote_addr ~* 65.125.25.64/26 ) { limit_rate 3k; } if ( $remote_addr ~* 208.23.64.0/25 ) { limit_rate 3k; } # put the serve files or proxy_pass code here. }
- The topic ‘Plugin request: Throttle the FCC to dial up modem speeds on your website – Nginx’ is closed to new replies.