Jeff, Is it a 64 bit or 32 bit server? How much RAM is available to the OS? It may not be a memory leak rather you may simply be running out of heap space, are you using the default 512mb? When you run ColdFusion with a 512mb heap size on a server with 4GB of ram, ColdFusion will only be able to use 512mb of that 4GB. So you will certainly want to increase the heap size if it is at 512mb and you have more than 1gb of ram on the server. Assuming you have roughly 2GB of ram on the server and If you are on 32 bit you can increase this to 1024MB (going much higher can cause CF not to start, but you should be able to get it higher if you experiment). If you are on 64 bit you can go much higher, just make sure that you leave some room for the OS / IIS and anything else that may need to run. SSL is likely not the problem, you would probably experience the same issue if you received the same amount of load you see on production on your development server. As for which file to edit you want to edit: {cf_root}/runtime/bin/jvm.config
... View more