70 lines
1.9 KiB
Nginx Configuration File
70 lines
1.9 KiB
Nginx Configuration File
#######################################################################
|
|
#
|
|
# This is the main Nginx configuration file.
|
|
#
|
|
# More information about the configuration options is available on
|
|
# * the English wiki - http://wiki.nginx.org/Main
|
|
# * the Russian documentation - http://sysoev.ru/nginx/
|
|
#
|
|
#######################################################################
|
|
|
|
#----------------------------------------------------------------------
|
|
# Main Module - directives that cover basic functionality
|
|
#
|
|
# http://wiki.nginx.org/NginxHttpMainModule
|
|
#
|
|
#----------------------------------------------------------------------
|
|
|
|
user nginx;
|
|
worker_processes 1;
|
|
|
|
error_log /var/log/nginx/error.log;
|
|
#error_log /var/log/nginx/error.log notice;
|
|
#error_log /var/log/nginx/error.log info;
|
|
|
|
pid /var/run/nginx.pid;
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
# Events Module
|
|
#
|
|
# http://wiki.nginx.org/NginxHttpEventsModule
|
|
#
|
|
#----------------------------------------------------------------------
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
# HTTP Core Module
|
|
#
|
|
# http://wiki.nginx.org/NginxHttpCoreModule
|
|
#
|
|
#----------------------------------------------------------------------
|
|
|
|
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 0;
|
|
keepalive_timeout 65;
|
|
|
|
#gzip on;
|
|
|
|
# Load config files from the /etc/nginx/conf.d directory
|
|
# The default server is in conf.d/default.conf
|
|
include /etc/nginx/conf.d/*.conf;
|
|
|
|
}
|