I've only recently started working with asp.net and c#. Is there a standard practice set of web.config settings for a live final website? There seem to be a ton of options available and I'm looking to streamline performance, close possible security holes and other unecessary options.
|
feedback
|
|
| |||
|
feedback
|
|
An empty web.config (or at least an absent | |||
|
feedback
|
|
Start with a clean web.config and only add the sections you need. For security, all you really can do is make sure you flag <compelation debug="false"> for your production box and set custom errors to true. | |||
|
feedback
|
|
Secure all folders containing any sensitive info with the location tag. Encrypt any connection strings with DPAPI. | |||
|
feedback
|