I would suggest leaving those settings and to only look at them if you have a problem.
By default, the connections in the pool will be closed after a period of inactivity. By setting a MinPoolSize, those connections will remain open which is more performant since opening connections is a time and resource intensive operation.
If you need to limit the number of connections that you have to SQL Server, set the MaxPoolSize.
Tim