Проблема конфигурации с HttpRealipModule (CloudFlare) в файле конфигурации nginx
Я пытался использовать HttpRealipModule с диапазоном IP-адресов CloudFlare в моем главном файле конфигурации nginx, но после перезапуска nginx я просто получаю стандартный `" файл конфигурации /etc/nginx/nginx.conf test fail ", и мой сайт запускается вниз.
Это то, что я пытался сделать с моим nginx.conf;
user www-data;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
# Basic Settings
set_real_ip_from 204.93.240.0/24;
set_real_ip_from 204.93.177.0/24;
set_real_ip_from 199.27.128.0/21;
set_real_ip_from 173.245.48.0/20;
set_real_ip_from 103.22.200.0/22;
set_real_ip_from 141.101.64.0/18;
set_real_ip_from 108.162.192.0/18;
set_real_ip_from 190.93.240.0/20;
set_real_ip_from 188.114.96.0/20;
set_real_ip_from 2400:cb00::/32;
set_real_ip_from 2606:4700::/32;
set_real_ip_from 2803:f800::/32;
real_ip_header CF-Connecting-IP;
client_max_body_size 50m;
client_header_timeout 5;
keepalive_timeout 5;
port_in_redirect off;
sendfile on;
server_tokens off;
server_name_in_redirect off;
tcp_nopush on;
tcp_nodelay on;
types_hash_max_size 2048;
# MIME
include /etc/nginx/mime.types;
default_type application/octet-stream;
# Logging Settings
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log warn;
# Gzip Settings
gzip on;
gzip_disable "msie6";
gzip_min_length 1400;
gzip_types text/plain text/css text/javascript text/xml application/x-javascript application/xml application/xml+rss;
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}
Что не так с этим файлом конфигурации?
1 ответ
Попробуйте интегрировать так:
# Cloudflare
real_ip_header X-Forwarded-For;
set_real_ip_from 204.93.240.0/24;
set_real_ip_from 204.93.177.0/24;
set_real_ip_from 199.27.128.0/21;
set_real_ip_from 173.245.48.0/20;
set_real_ip_from 103.21.244.0/22;
set_real_ip_from 103.22.200.0/22;
set_real_ip_from 103.31.4.0/22;
set_real_ip_from 141.101.64.0/18;
set_real_ip_from 108.162.192.0/18;
set_real_ip_from 190.93.240.0/20;
set_real_ip_from 188.114.96.0/20;
set_real_ip_from 197.234.240.0/22;
set_real_ip_from 198.41.128.0/17;
set_real_ip_from 2400:cb00::/32;
set_real_ip_from 2606:4700::/32;
set_real_ip_from 2803:f800::/32;
set_real_ip_from 2405:b500::/32;
set_real_ip_from 2405:8100::/32;
real_ip_recursive on;