Beanstalk Nodejs环境下增加nginx的worker_connections

htt*_*ete 5 amazon-web-services amazon-elastic-beanstalk amazon-linux-2

我正在尝试增加 Beanstalk Nodejs 服务器( Amazon Linux 2worker_connections )上的 nginx数量。 我按照文档创建了一个包含以下内容的文件:
.platform/nginx/conf.d/proxy.conf

worker_rlimit_nofile 65536;
events {
  worker_connections  32768;
}
Run Code Online (Sandbox Code Playgroud)

部署时我收到错误: [emerg] "worker_rlimit_nofile" directive is not allowed here in /var/proxy/staging/nginx/conf.d/proxy.conf

当评论这一行时我仍然得到: [emerg] "events" directive is not allowed here in /var/proxy/staging/nginx/conf.d/proxy.conf:3

Mar*_*cin 7

我认为这些是顶级设置,您必须覆盖主 nginx.conf文件。.platform/nginx/nginx.conf您可以通过创建配置文件来完成此操作。在这种情况下,您可以删除.platform/nginx/conf.d/proxy.conf.

您可以尝试以下操作 .platform/nginx/nginx.conf

# For more information on configuration, see:
#   * Official English Documentation: http://nginx.org/en/docs/
#   * Official Russian Documentation: http://nginx.org/ru/docs/
user nginx;
worker_processes auto;
worker_rlimit_nofile 65536;
error_log /var/log/nginx/error.log;                                      
pid /run/nginx.pid;
# Load dynamic modules. See /usr/share/doc/nginx/README.dynamic.         
include /usr/share/nginx/modules/*.conf;
events {
    worker_connections 32768;                                               
}
http {                                                                
    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;
    tcp_nodelay         on;
    keepalive_timeout   65;
    types_hash_max_size 4096;

    include             /etc/nginx/mime.types;
    default_type        application/octet-stream;

    include /etc/nginx/conf.d/*.conf;
    server {
        listen       80;
        listen       [::]:80;
        server_name  _;
        root         /usr/share/nginx/html;
        # Load configuration files for the default server block.                   
        include /etc/nginx/default.d/*.conf;  
        error_page 404 /404.html;        
            location = /40x.html {       
        }
        error_page 500 502 503 504 /50x.html;                                      
            location = /50x.html {       
        }
    }
}                                                                   
Run Code Online (Sandbox Code Playgroud)

如果这不起作用,您可以 ssh 进入您的 EB 实例,检查您的 EB 环境的实际默认值nginx.conf( /etc/nginx/nginx.conf),复制它,然后在.platform/nginx/nginx.conf.


cni*_*nsd 6

@marcin 上面的答案是正确的。对worker_connections进行更新需要通过该.platform/nginx/nginx.conf文件进行修改。作为其他人的参考,截至 2021 年 7 月,AWS 在 Elastic Beanstalk v2 和 Amazon Linux 2 上使用以下内容作为 nginx.conf 的默认设置:

#Elastic Beanstalk Nginx Configuration File

user                    nginx;
error_log               /var/log/nginx/error.log warn;
pid                     /var/run/nginx.pid;
worker_processes        auto;
worker_rlimit_nofile    131435;

events {
    worker_connections  1024;
}

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"';

    include       conf.d/*.conf;

    map $http_upgrade $connection_upgrade {
        default     "upgrade";
    }

    server {
        listen        80 default_server;
        access_log    /var/log/nginx/access.log main;

        client_header_timeout 60;
        client_body_timeout   60;
        keepalive_timeout     60;
        gzip                  off;
        gzip_comp_level       4;
        gzip_types text/plain text/css application/json application/javascript application/x-javascript text/xml application/xml application/xml+rss text/javascript;

        # Include the Elastic Beanstalk generated locations
        include conf.d/elasticbeanstalk/*.conf;
    }
}
Run Code Online (Sandbox Code Playgroud)

只需添加上述文件并将.platform/nginx/nginx.confworker_connections 值修改为所需的值即可。AWS 文档目前缺乏这方面的内容,但我已要求他们进行进一步更新。