I was looking for php.ini to adjust some memory settings for my WordPress droplet when I noticed that there are multiple php.ini files.
I found one in /var/www/html and one in /etc/php/7.0/apache2. I altered the later and things seem to be working, but what is the purpose of having 2 php.ini files and what does each control?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
The one in /etc/php/7.0/apache2 is the base configuration that PHP uses. By default, PHP does not read php.ini files located in your website’s document root. You can configure Apache to use a different file by adding PHPINIDir /path/to/directory/containing/it to its configuration file (not the virtual host config), but you usually wouldn’t need to do so.
So, in short, only the one in /etc/php/7.0/apache2 matters. The other one is not used. You can verify which one is being used by placing a file containing the following and then browsing to it:
<?php
phpinfo();
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.
