user nginx; worker_processes auto; error_log /var/log/nginx/error.log notice; pid /var/run/nginx.pid; events { worker_connections 1024; } stream { allow 27.16.214.87; deny all; proxy_timeout 1d; proxy_connect_timeout 30; server { listen 8080; proxy_connect_timeout 28800; proxy_timeout 86400; #asia2.ethermine.org #proxy_pass 172.65.239.73:14444; proxy_pass 172.65.239.73:5555; } } http { include /etc/nginx/mime.types; default_type application/octet-stream; log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; access_log /var/log/nginx/access.log main; sendfile on; #tcp_nopush on; keepalive_timeout 65; #gzip on; include /etc/nginx/conf.d/*.conf; }