mirror of
https://github.com/fergalmoran/nginx-rtmp-geoip2-alpine.git
synced 2025-12-22 09:28:28 +00:00
101 lines
3.8 KiB
Nginx Configuration File
101 lines
3.8 KiB
Nginx Configuration File
worker_processes 1;
|
|
error_log /var/log/nginx/error.log warn;
|
|
pid /var/run/nginx.pid;
|
|
load_module /etc/nginx/modules/ngx_http_geoip2_module.so; # GeoIP2
|
|
#load_module /etc/nginx/modules/ngx_rtmp_module.so;
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
http {
|
|
variables_hash_bucket_size 1024;
|
|
variables_hash_max_size 1024;
|
|
map_hash_max_size 1024;
|
|
map_hash_bucket_size 512;
|
|
types_hash_bucket_size 512;
|
|
server_names_hash_bucket_size 512;
|
|
sendfile on;
|
|
tcp_nodelay on;
|
|
tcp_nopush on;
|
|
autoindex off;
|
|
server_tokens off;
|
|
keepalive_timeout 15;
|
|
client_max_body_size 100m;
|
|
|
|
#set_real_ip_from xxx.xxx.xxx.xxx;
|
|
real_ip_header X-Forwarded-For;
|
|
real_ip_recursive on;
|
|
include mime.types;
|
|
default_type application/octet-stream;
|
|
|
|
index index.php index.html index.htm;
|
|
# Main
|
|
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
|
|
'$status $body_bytes_sent "$http_referer" '
|
|
'"$http_user_agent" "$http_x_forwarded_for"';
|
|
|
|
# GeoIP2
|
|
log_format main_geo '$remote_addr - $remote_user [$time_local] "$request" '
|
|
'$status $body_bytes_sent "$http_referer" '
|
|
'"$http_user_agent" "$http_x_forwarded_for" '
|
|
'$geoip2_data_country_iso $geoip2_data_country_name'
|
|
'- EU Country: $geoip2_data_country_is_eu';
|
|
|
|
access_log /var/log/nginx/access.log main_geo;
|
|
#===================== GEOIP2 =====================#
|
|
geoip2 /usr/share/geoip/GeoLite2-Country.mmdb {
|
|
$geoip2_metadata_country_build metadata build_epoch;
|
|
$geoip2_data_country_geonameid country geoname_id;
|
|
$geoip2_data_country_iso country iso_code;
|
|
$geoip2_data_country_name country names en;
|
|
$geoip2_data_country_is_eu country is_in_european_union;
|
|
}
|
|
#geoip2 /usr/share/geoip/GeoLite2-City.mmdb {
|
|
# $geoip2_data_city_name city names en;
|
|
# $geoip2_data_city_geonameid city geoname_id;
|
|
# $geoip2_data_continent_code continent code;
|
|
# $geoip2_data_continent_geonameid continent geoname_id;
|
|
# $geoip2_data_continent_name continent names en;
|
|
# $geoip2_data_location_accuracyradius location accuracy_radius;
|
|
# $geoip2_data_location_latitude location latitude;
|
|
# $geoip2_data_location_longitude location longitude;
|
|
# $geoip2_data_location_metrocode location metro_code;
|
|
# $geoip2_data_location_timezone location time_zone;
|
|
# $geoip2_data_postal_code postal code;
|
|
# $geoip2_data_rcountry_geonameid registered_country geoname_id;
|
|
# $geoip2_data_rcountry_iso registered_country iso_code;
|
|
# $geoip2_data_rcountry_name registered_country names en;
|
|
# $geoip2_data_rcountry_is_eu registered_country is_in_european_union;
|
|
# $geoip2_data_region_geonameid subdivisions 0 geoname_id;
|
|
# $geoip2_data_region_iso subdivisions 0 iso_code;
|
|
# $geoip2_data_region_name subdivisions 0 names en;
|
|
#}
|
|
|
|
#=================Basic Compression=================#
|
|
gzip on;
|
|
gzip_disable "msie6";
|
|
gzip_vary on;
|
|
gzip_proxied any;
|
|
gzip_comp_level 6;
|
|
gzip_buffers 16 8k;
|
|
gzip_http_version 1.1;
|
|
gzip_types text/css text/xml text/plain application/javascript image/jpeg image/png image/gif image/x-icon image/svg+xml image/webp application/font-woff application/json application/vnd.ms-fontobject application/vnd.ms-powerpoint;
|
|
gzip_static on;
|
|
|
|
#====Connection Upgrade For Websocket Connections====#
|
|
map $http_upgrade $connection_upgrade {
|
|
default upgrade;
|
|
'' close;
|
|
}
|
|
|
|
#====Ban Countries Based On GeoIP2 ISO Code====#
|
|
# Uncomment iso code to ban
|
|
map $geoip2_data_country_iso $allowed_country {
|
|
default yes;
|
|
#CN no;
|
|
#UA no;
|
|
#IN no;
|
|
#RU no;
|
|
}
|
|
#=================Configuration Files=================#
|
|
include /etc/nginx/conf.d/*.conf;
|
|
} |