# For more information on configuration, see: # * Official English Documentation: http://nginx.org/en/docs/ # * Official Russian Documentation: http://nginx.org/ru/docs/ %if %%os_name == 'Fedora' user nginx; %else user www-data; %end if worker_processes auto; #GNUNUX error_log /var/log/nginx/error.log; #>GNUNUX error_log syslog:server=unix:/dev/log; #<GNUNUX pid /run/nginx.pid; # Load dynamic modules. See /usr/share/doc/nginx/README.dynamic. %if %%os_name == 'Fedora' include /usr/share/nginx/modules/*.conf; %else include /etc/nginx/modules-enabled/*.conf; %end if events { worker_connections 1024; } http { log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; #GNUNUX access_log /var/log/nginx/access.log main; #>GNUNUX access_log syslog:server=unix:/dev/log combined; error_log syslog:server=unix:/dev/log error; #<GNUNUX sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 4096; include /etc/nginx/mime.types; default_type application/octet-stream; # Load modular configuration files from the /etc/nginx/conf.d directory. # See http://nginx.org/en/docs/ngx_core_module.html#include # for more information. include /etc/nginx/conf.d/*.conf; %if %%nginx_default_http server { listen 80; listen [::]:80; server_name _; root %%nginx_root; # Load configuration files for the default server block. include /etc/nginx/default.d/*.conf; error_page 404 /404.html; location = /404.html { } error_page 500 502 503 504 /50x.html; location = /50x.html { } } %end if # Settings for a TLS enabled server. # %if %%nginx_default_https server { listen 443 ssl http2; %if %%getVar('revprox_client_external_domainnames', None) %for %%domain in %%revprox_client_external_domainnames server_name %%domain; %end for %else server_name _; %end if root %%nginx_root; # ssl_certificate "/etc/pki/nginx/server.crt"; # ssl_certificate_key "/etc/pki/nginx/private/server.key"; ssl_certificate %%revprox_crt_file; ssl_certificate_key %%revprox_key_file; %if %%getVar('revprox_client_external_domainnames', None) ssl_client_certificate %%revprox_ca_file; %else ssl_client_certificate /etc/pki/ca-trust/source/anchors/ca_HTTP.crt; %end if ssl_session_cache shared:SSL:1m; ssl_session_timeout 10m; %if %%os_name == 'Fedora' ssl_ciphers PROFILE=SYSTEM; ssl_prefer_server_ciphers on; %end if # Load configuration files for the default server block. include /etc/nginx/default.d/*.conf; error_page 404 /404.html; location = /40x.html { } error_page 500 502 503 504 /50x.html; location = /50x.html { } } %end if include /etc/nginx/sites-enabled/*; }