\x89\x50\x4E\x47\x0D\x0A\x1A\x0A PNG  \x89\x50\x4E\x47\x0D\x0A\x1A\x0A load_module "/usr/lib64/nginx/modules/ngx_http_htpasswd_module.so"; load_module "/usr/lib64/nginx/modules/ngx_stream_module.so"; worker_processes 2; error_log /var/log/nginx/error.log; pid /var/run/nginx.pid; events { worker_connections 1024; } http { map $http_x_forwarded_proto $thescheme { default $scheme; https https; } set_real_ip_from 10.1.0.0/16; set_real_ip_from 10.3.0.0/16; set_real_ip_from 10.12.0.0/16; set_real_ip_from 10.52.0.0/14; set_real_ip_from 31.177.93.0/24; set_real_ip_from 195.208.0.0/23; real_ip_header X-Real-IP; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_ciphers GOST2012-GOST8912-GOST8912:EECDH+ECDSA+AESGCM:EECDH+aRSA+AESGCM:EECDH+ECDSA+SHA384:EECDH+ECDSA+SHA256EECDH+aRSA+SHA384:EECDH+aRSA+SHA256:EECDH:EDH+aRSA:!RC4:!aNULL:!eNULL:!LOW:!3DES:!MD5:!EXP:!PSK:!SRP:!DSS:!DHE; ssl_prefer_server_ciphers on; ssl_session_cache shared:SSL:10m; ssl_session_timeout 10m; include /usr/share/nginx/mime.types; default_type application/octet-stream; client_body_temp_path /tmp/nginx; proxy_temp_path /tmp/nginx/proxy; fastcgi_temp_path /tmp/nginx/fastcgi; uwsgi_temp_path /tmp/nginx/uwsgi; scgi_temp_path /tmp/nginx/scgi; server_names_hash_bucket_size 256; sendfile on; keepalive_timeout 65; include /etc/nginx/conf.d/*.conf; } stream { server { listen 127.0.0.1:3306; proxy_pass unix:/var/run/mysqld/mysqld.sock; } }