更新后y让我们加密域更新,我无法启动Nginx。我收到一条消息:
nginx: [emerg] zero size shared memory zone "one".
我没有找到任何解决方案,有人解决过吗?
我看到我的4名工作人员使用了这个内存,我添加了一个代理,但我的服务器仍然没有重启。
谢谢
user nginx;
worker_processes 4;
pid /run/nginx.pid;
events {
worker_connections 768;
# multi_accept on;
}
http {
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type application/octet-stream;
##
# SSL Settings
##
ssl_protocols TLSv1.2;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
# include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
#proxy
proxy_cache_path /var/nginx/cache levels=1:2 keys_zone=app_cache:10m max_size=5g inactive=45m use_temp_path=off;
}
答案 0 :(得分:0)
最终我在我的一个配置文件中找到了这一行并对其进行了评论:
# limit_req zone=one burst=1 nodelay;
谢谢肖恩
让