What are .ENV files?

Two fundamental components of any computer programming language are variables and constants. Like independent variables in a mathematical equation, these take on values that change the results of the program. Variables and constants both represent unique memory locations containing data the program uses in its calculations. The difference between the two is that variable values may change during execution, while constant values cannot be reassigned.

What is an ENV file?

A .env file or dotenv file is a simple text configuration file for controlling your application’s environment constants. Between Local, Staging, and Production environments, the majority of your Application will not change. However, in many applications, there are instances in which some configuration will need to be altered between environments. Common configuration changes between environments may include, but are not limited to:

  • URLs and API keys
  • Domain names
  • Public and private authentication keys
  • Service account names

An environment constant is a variable whose value is set outside the program, typically through functionality built into the operating system. An environment variable is made up of a name/value pair, and any number may be created and available for reference at a point in time.

ENV Example:

VARIABLE_NAME=value
# Malware.Expert
MALWARE_EXPERT_HOMEPAGE="https://malware.expert"
DATABASE_URL=mysql://root:root@127.0.0.1:3306/database?serverVersion=mariadb-10.4.1

Security

For security reasons, these should not be readable through a browser. In any web server (Nginx, Apache, LiteSpeed, etc), these should be blocked or use ModSecurity block access to them. The reason for this is that .env will likely contain sensitive information such as API secrets, database usernames and passwords, amongst other things and it’s important to keep this information secure.