Select Language:
If you’re using a non-Bitnami WordPress setup on Lightsail, finding the wp-config.php file is an important first step before making any changes. Unlike Bitnami instances where the file is usually at /opt/bitnami/wordpress/wp-config.php, non-Bitnami installations have a different structure.
You can usually find wp-config.php in one of these locations:
– /var/www/html/wp-config.php (this is the most common)
– /home/bitnami/htdocs/wp-config.php
– The main folder where WordPress was installed
To locate the file quickly, connect to your server via SSH and run this command:
sudo find / -name wp-config.php
This command scans your whole server and shows the exact path to the file. Once located, you’ll want to open and edit it using a text editor. But before making any edits, it’s best to back up the file to avoid any problems. You can do this with the command:
sudo cp /path/to/wp-config.php /path/to/wp-config.php.backup
Just replace “/path/to/” with the actual path from the find command.
Taking these simple steps ensures you’re prepared to safely update your WordPress configuration.





