35 lines
944 B
Nginx Configuration File
35 lines
944 B
Nginx Configuration File
user nginx;
|
||
worker_processes auto;
|
||
|
||
error_log /var/log/nginx/error.log notice;
|
||
pid /var/run/nginx.pid;
|
||
|
||
|
||
events {
|
||
worker_connections 1024;
|
||
}
|
||
|
||
|
||
http {
|
||
include /etc/nginx/mime.types;
|
||
default_type application/octet-stream;
|
||
include /etc/nginx/conf.d/*.conf;
|
||
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;
|
||
|
||
# HTTPS server 块按需加载:
|
||
# 该目录默认为空(nginx 的 wildcard include 匹配 0 个文件时不报错),
|
||
# 证书申请成功后由 enable-ssl.sh 写入配置,从而避免冷启动时
|
||
# 因证书文件不存在导致 nginx 拒绝启动。
|
||
include /etc/nginx/ssl.d/*.conf;
|
||
|
||
}
|