nginx 十万并发配置文件

nginx 十万并发配置文件,第1张

概述nginx 十万并发配置文件

路径:

# ubuntu vim /etc/Nginx/Nginx.conf

Nginx 十万并发配置文件

user root;# cpu数量,建议使用默认worker_processes @R_403_6843@;pID /run/Nginx.pID;# 配置Nginx worker进程最大打开文件数 worker_rlimit_nofile 65535;events {        # 单个进程允许的客户端最大连接数	worker_connections 20480;	# multi_accept on;}http {	##	# Basic Settings	##	sendfile on;	tcp_nopush on;	tcp_nodelay on;	keepalive_timeout 65;	types_hash_max_size 2048;	# server_tokens off;	# server_names_hash_bucket_size 64;	# server_name_in_redirect off;	include /etc/Nginx/mime.types;	default_type application/octet-stream;	##	# SSL Settings	##	ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # DropPing SSLv3, ref: POODLE	ssl_prefer_server_ciphers on;	##	# Logging Settings	##	access_log /var/log/Nginx/access.log;	error_log /var/log/Nginx/error.log;	##	# Gzip Settings	##	gzip on;	gzip_disable "msie6";	# gzip_vary on;	# gzip_proxIEd any;	# gzip_comp_level 6;	# gzip_buffers 16 8k;	# gzip_http_version 1.1;	# gzip_types text/plain text/CSS application/Json application/JavaScript text/xml application/xml application/xml+RSS text/JavaScript;	##	# Virtual Host Configs	##	include /etc/Nginx/conf.d/*.conf;	include /etc/Nginx/sites-enabled/*;}#mail {#	# See sample authentication script at:#	# http://wiki.Nginx.org/ImapAuthenticateWithApachePHPScript# #	# auth_http localhost/auth.PHP;#	# pop3_capabilitIEs "top" "USER";#	# imap_capabilitIEs "IMAP4rev1" "UIdplUS";# #	server {#		Listen     localhost:110;#		protocol   pop3;#		proxy      on;#	}# #	server {#		Listen     localhost:143;#		protocol   imap;#		proxy      on;#	}#}

检查

ulimit -a|grep "open files">>> open files                      (-n) 65535


总结

以上是内存溢出为你收集整理的nginx 十万并发配置文件全部内容,希望文章能够帮你解决nginx 十万并发配置文件所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/1042429.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-24
下一篇 2022-05-24

发表评论

登录后才能评论

评论列表(0条)

保存