based on Alpine Linux and the nginx brotli module
100K+
This project is based on Alpine Linux, the official nginx image and an nginx module that provides static and dynamic brotli compression. Brotli and the nginx brotli module are built by Google.
Info: Since 2022-03-19, bump openssl to openssl3 to test
1.19.6 and before,is nginx + brotli
since 1.19.8 is nginx + brotli + ngx_http_geoip2_module + ngx_http_ipdb_module
the http3 is test for latest nginx + brotli + ngx_http_geoip2_module + ngx_http_ipdb_module + http/3,http/3 support provided from the cloudflare/quiche projectthe, availability of the mirror is not guaranteed
the quic is test for latest nginx-quic + brotli + ngx_http_geoip2_module + ngx_http_ipdb_module,the availability of the mirror is not guaranteed
the ip2location is latest nginx + brotli + ip2location-nginx + ngx_http_ipdb_module
the ip2region is latest nginx + brotli + ngx_http_ip2region-module + ngx_http_geoip2_module
lite is only nginx + brotli
Just official Nginx,there are some configtion example,You can also see the relevant configuration examples from the corresponding module project address.
Simple configuration example(/etc/nginx/nginx.conf):
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
# load dynamic-module,it depends on the tag you choose
load_module modules/ngx_http_geoip2_module.so;
load_module modules/ngx_http_ipdb_module.so;
load_module modules/ngx_http_ip2region_module.so;
events {
use epoll;
worker_connections 1024;
}
http {
......
log_format json_log escape=json '{'
```````
'"ipdb_country_name": "$ipdb_country_name",'
'"ipdb_city_name": "$ipdb_city_name",'
'"ip2region_country_name": "$ip2region_country_name",'
'"ip2region_city_name": "$ip2region_city_name",'
'"ip2region_isp_domain": "$ip2region_isp_domain",'
'"ip2region_province_name": "$ip2region_province_name",'
'"ip2region_city_id": "$ip2region_city_id",'
'"geoip2_data_country_code": "$geoip2_data_country_code",'
'"geoip2_data_city_name": "$geoip2_data_city_name"'
'}';
# geoip2
geoip2 /path/to/GeoLite2-Country.mmdb {
auto_reload 60m;
$geoip2_metadata_country_build metadata build_epoch;
$geoip2_data_country_code country iso_code;
$geoip2_data_country_name country names en;
}
geoip2 /path/to/GeoLite2-City.mmdb {
auto_reload 60m;
$geoip2_metadata_city_build metadata build_epoch;
$geoip2_data_city_name city names en;
}
# ipdb
ipdb /path/to/qqwry.ipdb;
ipdb_language CN;
ipdb_proxy 127.0.0.1;
ipdb_proxy_recursive on;
# ip2region-v1
ip2region "/path/to/ip2region.db" "btree";
# ip2region-v2
# https://github.com/lionsoul2014/ip2region/tree/master/binding/nginx
# set xdb file path
ip2region_db ip2region.xdb;
# ip2region_db ip2region.xdb vectorIndex;
# ip2region_db ip2region.xdb file;
# ip2region_db ip2region.xdb content;
.........
# brotli
brotli on;
brotli_comp_level 6;
brotli_buffers 16 8k;
brotli_min_length 20;
brotli_static on;
brotli_types application/atom+xml application/javascript application/json application/rss+xml application/vnd.ms-fontobject application/x-font-opentype application/x-font-truetype application/x-font-ttf application/x-javascript application/xhtml+xml application/xml font/eot font/opentype font/otf font/truetype image/svg+xml image/vnd.microsoft.icon image/x-icon image/x-win-bitmap text/css text/javascript text/plain text/xml;
include conf.d/*.conf;
}
http3 example configuration:
server {
# Enable QUIC and HTTP/3.
listen 443 quic reuseport;
# Ensure that HTTP/2 is enabled for the server
listen 443 ssl http2;
server_name localhost;
# Enable TLS versions (TLSv1.3 is required for QUIC).
ssl_protocols TLSv1.2 TLSv1.3;
ssl_certificate /etc/ssl/localhost.pem;
ssl_certificate_key /etc/ssl/private/localhost.key;
ssl_session_cache shared:SSL:1m;
ssl_session_timeout 5m;
# Enable TLSv1.3's 0-RTT. Use $ssl_early_data when reverse proxying to
# prevent replay attacks.
#
# @see: http://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_early_data
ssl_early_data on;
ssl_ciphers HIGH:!aNULL:!MD5;
ssl_prefer_server_ciphers on;
# Add Alt-Svc header to negotiate HTTP/3.
add_header alt-svc 'h3=":443"; ma=86400';
# Debug 0-RTT.
add_header X-Early-Data $tls1_3_early_data;
add_header x-frame-options "deny";
add_header Strict-Transport-Security "max-age=31536000" always;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
}
map $ssl_early_data $tls1_3_early_data {
"~." $ssl_early_data;
default "";
}
quic example configuration:
http {
log_format quic '$remote_addr - $remote_user [$time_local] '
'"$request" $status $body_bytes_sent '
'"$http_referer" "$http_user_agent" "$quic" "$http3"';
access_log logs/access.log quic;
server {
# for better compatibility it's recommended
# to use the same port for quic and https
listen 8443 http3 reuseport;
listen 8443 ssl;
ssl_certificate certs/example.com.crt;
ssl_certificate_key certs/example.com.key;
ssl_protocols TLSv1.3;
location / {
# required for browsers to direct them into quic port
add_header Alt-Svc '$http3=":8443"; ma=86400';
}
}
}
free ip database download links:
Content type
Image
Digest
sha256:ce9252fa5…
Size
34.1 MB
Last updated
about 2 months ago
docker pull peytonyip/nginx-brotli