Free Conn and Free SSL Conn

David

Active Member
#4
OK.
It is like "available connection: 2000" and same for SSL connection.
Because you set max connection is 2000 and when no one current connecting then it will be 2000 available.
 
#5
does this mean at one point in time, maximum users to a site cannot exceed more than 1000 on an ssl connection?

I did not set this up myself, it came default like this. Is it possible for me to modify this setting and where can I modify it?

Thank you.
 
#7
Can you please suggest how may I change this?

I am no where near the point where I will have 2000 simultaneous users on my website. But this is something that will come in handy if I ever get there. Hopefully you are no laughing at me right now :)

Thank you.
 

David

Active Member
#8
You do not need to do changes for now. It won't cause too much memory usage issue but is big enough to handle traffic.
When your server are too busy, then you may need to do some tuning.
 

David

Active Member
#13
OK, in server Tuning part, you will find them.
In the conf file, it is
Code:
tuning  {
  maxConnections          2000
  maxSSLConnections       1000
  ...
}
 
Top