Since you have posted the question on Azure App Service? I presume your WordPress webapp is hosted on Azure WebApp.
On App Service: The wp-config.php files can be updated using either Kudu console or FTP Client (such as FileZilla).
- Browse to Kudu : http://”yoursitename”.scm.azurewebsites.net.
Example: if your Azure App Service Web App name is “testwebapp”, then surf to http://testwebapp.scm.azurewebsite.net
- Click ‘Debug Console’ and select ‘CMD’
Traverse to wwwroot
folder
- For WordPress, update
wp-config.php
-make necessary changes, and save.
Checkout these docs for more details on this:
- Enable WordPress Error Logs - Shows steps on : Wiithin wwwroot directory, open wp-config.php Add the following settings BEFORE the line /* That’s all, stop editing! … . */ :
- WordPress Best Practices for Performance - Shows steps to : Disable WP-Cron
- WordPress: Redirecting to wrong URL!! ( wp-config.php config options)
- Best Practices for WordPress Security on Azure (Customize and modify default settings in wp-config.php )
--We may have to re-tag to receive insights from the targetted audience/SMEs.