I've successfully installed PHP5, MySQL, and phpMyAdmin on a Linux host...
However, I'm concerned about the security of my config.inc.php file. Ideally, I'd like to chmod 600 this file since it contains a db password in plain text. The problem is that it will only work if the file is 644.
Currently, my Apache web server is running as user "apache" and group "apache", and phpMyAdmin is running as user "52400" and group "24067".
As far as I know, changing the user/group will not make a difference to the security since the config file will still be readable by others.
Any idea how to make this a little more secure?