Merge pull request #651 from emqtt/emq10

1.1.3 - certfile, keyfile
This commit is contained in:
Feng Lee 2016-08-19 09:43:35 +08:00 committed by GitHub
commit 452e60bb5f
3 changed files with 12 additions and 6 deletions

View File

@ -72,8 +72,14 @@ Connection Tracking::
The TIME-WAIT Buckets Pool, Recycling and Reuse:: The TIME-WAIT Buckets Pool, Recycling and Reuse::
net.ipv4.tcp_max_tw_buckets=1048576 net.ipv4.tcp_max_tw_buckets=1048576
net.ipv4.tcp_tw_recycle = 1
net.ipv4.tcp_tw_reuse = 1 # Enable fast recycling of TIME_WAIT sockets. Enabling this
# option is not recommended for devices communicating with the
# general Internet or using NAT (Network Address Translation).
# Since some NAT gateways pass through IP timestamp values, one
# IP can appear to have non-increasing timestamps.
# net.ipv4.tcp_tw_recycle = 1
# net.ipv4.tcp_tw_reuse = 1
Timeout for FIN-WAIT-2 sockets:: Timeout for FIN-WAIT-2 sockets::

View File

@ -59,8 +59,8 @@
% {user_dn, "uid=$u,ou=People,dc=example,dc=com"}, % {user_dn, "uid=$u,ou=People,dc=example,dc=com"},
% {ssl, fasle}, % {ssl, fasle},
% {sslopts, [ % {sslopts, [
% {"certfile", "ssl.crt"}, % {certfile, "ssl.crt"},
% {"keyfile", "ssl.key"}]} % {keyfile, "ssl.key"}]}
% ]}, % ]},
%% Allow all %% Allow all

View File

@ -51,8 +51,8 @@
% {user_dn, "uid=$u,ou=People,dc=example,dc=com"}, % {user_dn, "uid=$u,ou=People,dc=example,dc=com"},
% {ssl, fasle}, % {ssl, fasle},
% {sslopts, [ % {sslopts, [
% {"certfile", "ssl.crt"}, % {certfile, "ssl.crt"},
% {"keyfile", "ssl.key"}]} % {keyfile, "ssl.key"}]}
% ]}, % ]},
%% Allow all %% Allow all