This is a general discussion/question for server-based applications in general.
How do you identify whether the instance your code is running on, is Production, or Dev/Test/UAT/etc? Do you have a naming convention for the server (e.g. all Production servers are named xxx-PROD)? Do you have a special file or record in a database that says "This is Prod" that is not released using the normal version control process? Do you have a parameter setting somewhere that someone manually updates to "Prod" or "Non-Prod"?
Specifically, how do you overcome the following issues that I've seen:
If you use a special file or database record or parameter setting, and an administrator is tasked with making a copy of Production for some testing work, e.g. to refresh UAT, how do they ensure that the copy doesn't end up with that special file/database record/parameter setting? How does the copy know that it's not Production? e.g. the process relies on the administrator knowing (a) that they need to make a change, and (b) how to make that change.
If it's based on a naming convention for the server name, I guess it's down to QA of proposed names for all servers. You'd need an approval process to go through before any server could be named.
How do you go about testing the Prod/Non-Prod specific parts of the system to ensure they work correctly in both scenarios?
Are there any standard practices or design patterns I'm not aware of that have solved this problem?
Personally, I'd much rather have all systems internally identical - less variability for testing to account for - and to coccoon all non-Prod environments (in a VM?) in such a way that they can safely act like Production (e.g. sending emails, connecting to other servers) without causing any real damage (i.e. emails get silently ignored or dropped in a special mailbox, so that users and customers don't end up getting emails from a dev server).