include conf.d/upstream_ceph.conf ; server { listen 80; server_name clover.ciberterminal.net clover.devoluiva.com clover; access_log /var/log/nginx/clover.ciberterminal.net.access.log; error_log /var/log/nginx/clover.ciberterminal.net.error.log; root /usr/local/nginx/html ; client_max_body_size 0; proxy_buffering off; proxy_request_buffering off; # This must be set to clover.ciberterminal.net as is the internal name known by the gateways proxy_set_header Host clover.ciberterminal.net; proxy_set_header X-Forwarded-For $remote_addr; # limiting requests per second limit_req zone=ten burst=30 nodelay; # Nginx status include /etc/nginx/conf.d/nginx_status.conf; # PUBLIC BUCKETS include bucket.d/*.conf ; location / { allow 127.0.0.1; # f5 ip's allow 10.20.0.5; allow 10.20.0.6; allow 10.20.0.7; allow 10.20.0.8; deny all; } }