快速部署的KMS服务
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
462 B

user root;
pcre_jit on;
pid /run/nginx.pid;
worker_processes auto;
error_log /dev/stdout warn;
include /etc/nginx/modules/*.conf;
events {
worker_connections 1024;
}
http {
log_format access '[$time_iso8601] $remote_addr -> $scheme://$host - "$request"'
' -> ($status) $request_length $bytes_sent {$http_user_agent}';
access_log /dev/stdout access;
include /etc/nginx/mime.types;
include /etc/nginx/kms.conf;
}