// INTERNETARCHIVE / NGINX
internetarchive · Nginx
Nginx allow/deny config for internetarchive. Drop into your server block or http context. 9 CIDRs, refreshed daily.
// nginx_internetarchive_allow.conf
# Internetarchive IP Ranges # Updated: 2026-08-11 02:55:07 # Source: https://github.com/rezmoss/cloud-provider-ip-addresses # License: https://github.com/rezmoss/cloud-provider-ip-addresses/LICENSE # This file is generated automatically. Do not edit it directly. # Updates daily at 02:00 UTC # To restrict access to only these IPs in nginx, # add the following line to your server block in your nginx configuration file (e.g., /etc/nginx/nginx.conf or /etc/nginx/sites-available/default): # include /path/to/nginx_internetarchive_allow.conf; allow 204.62.246.0/23; allow 204.62.248.0/23; allow 207.241.224.0/20; allow 208.70.24.0/21; allow 2620:0:9c0::/48; deny all;
// nginx_internetarchive_deny.conf
# Internetarchive IP Ranges # Updated: 2026-08-11 02:55:07 # Source: https://github.com/rezmoss/cloud-provider-ip-addresses # License: https://github.com/rezmoss/cloud-provider-ip-addresses/LICENSE # This file is generated automatically. Do not edit it directly. # Updates daily at 02:00 UTC # To deny access from these IPs in nginx, # add the following line to your server block in your nginx configuration file (e.g., /etc/nginx/nginx.conf or /etc/nginx/sites-available/default): # include /path/to/nginx_internetarchive_deny.conf; deny 204.62.246.0/23; deny 204.62.248.0/23; deny 207.241.224.0/20; deny 208.70.24.0/21; deny 2620:0:9c0::/48; allow all;