详解 Nginx 配置文件中的各块及其参数设置
HTTP块用于设置与顾客端恳求相关的参数,指令设置了容许的最大恳求体大小。
3、块()
块用于设置服务器的参数,指令定义了服务器窃听的端口。
4、Event块(Event)
Event块用于设置风波处理器的参数,指令定义了每位工作进程容许的最大联接数。
5、块()
块用于包含其他配置文件,指令可以包含其他的配置文件。
6、Main块(Main)
Main块是配置文件的结束,在这个位置,可以使用一些特殊的指令,如和pid指令。
以下是一个简单的nginx.conf配置文件示例:
Global Configurationuser wwwdata; # Set the user to the owner of the process listening on port 80.worker_processes auto; # Autodetect the number of CPU cores and set it as the number of worker processes.pid /var/run/nginx.pid; # Set the PID file location.error_log /var/log/nginx/error.log; # Set the error log file location.events { # Event Configuration worker_connections 1024; # Set the maximum number of simultaneous connections per worker process.}http { # HTTP Configuration include mime.types; # Include the mime types file for content negotiation. default_type application/octetstream; # Set the default MIME type to application/octetstream if none is specified in the request header. log_format main '$remote_addr $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; # Set the log format for access logs. access_log /var/log/nginx/access.log main; # Set the access log file location and format. sendfile on; # Use sendfile() to transfer files instead of reading them into memory and then sending them.server { # Server Configuration listen 80; # Set the server to listen on port 80. server_name example.com; # Set the server name to example.com. root /var/www/example.com; # Set the root directory for the server to /var/www/example.com. location / { # Set the location block for the root directory. try_files $uri $uri/ =404; # Try to serve the requested file, if not found, return a 404 Not Found error. }}} # Main Block