Context¶
You have to select one of those contexts for each website:
PROD¶
The PROD context is meant for live websites. Its default presets are:
access protection disabled
phpinfo disabled (visible database credentials from environment variables)
E-Mails are sent to their designated recipient (PHP
mail()
only, see Context Based E-Mail Handling for details)WEBSITE_CONTEXT
environment variable set toPROD
(see Environment Variables)
STAGE¶
The STAGE context is meant for test websites. Its default presets are:
access protection enabled (see Preview User)
phpinfo enabled
E-Mails are saved as file into the
~/tmp/
directory (PHPmail()
only, Context Based E-Mail Handling for details)WEBSITE_CONTEXT
environment variable set toSTAGE
(see Environment Variables)
DEV¶
The DEV context is meant for developing websites. Its default presets are:
access protection enabled (see Preview User)
phpinfo enabled
Xdebug enabled (see PHP Debugging for details)
E-Mails are saved as file into the
~/tmp/
directory (PHPmail()
only, Context Based E-Mail Handling for details)WEBSITE_CONTEXT
environment variable set toDEV
(see Environment Variables)