diff options
Diffstat (limited to 'doc/md')
-rw-r--r-- | doc/md/Server-configuration.md | 2 | ||||
-rw-r--r-- | doc/md/Server-security.md | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/doc/md/Server-configuration.md b/doc/md/Server-configuration.md index bd293c37..bc6ac980 100644 --- a/doc/md/Server-configuration.md +++ b/doc/md/Server-configuration.md | |||
@@ -187,7 +187,7 @@ http { | |||
187 | ``` | 187 | ``` |
188 | 188 | ||
189 | ```ini | 189 | ```ini |
190 | # /etc/php5/fpm/php.ini | 190 | # /etc/php/$php_version/fpm/php.ini |
191 | 191 | ||
192 | [...] | 192 | [...] |
193 | post_max_size = 10M | 193 | post_max_size = 10M |
diff --git a/doc/md/Server-security.md b/doc/md/Server-security.md index 700084e2..467ec80b 100644 --- a/doc/md/Server-security.md +++ b/doc/md/Server-security.md | |||
@@ -1,10 +1,10 @@ | |||
1 | ## php.ini | 1 | ## php.ini |
2 | PHP settings are defined in: | 2 | PHP settings are defined in: |
3 | 3 | ||
4 | - a main configuration file, usually found under `/etc/php5/php.ini`; some distributions provide different configuration environments, e.g. | 4 | - a main configuration file, usually found under `/etc/php/$php_version/php.ini`; some distributions provide different configuration environments, e.g. |
5 | - `/etc/php5/php.ini` - used when running console scripts | 5 | - `/etc/php/$php_version/php.ini` - used when running console scripts |
6 | - `/etc/php5/apache2/php.ini` - used when a client requests PHP resources from Apache | 6 | - `/etc/php/$php_version/apache2/php.ini` - used when a client requests PHP resources from Apache |
7 | - `/etc/php5/php-fpm.conf` - used when PHP requests are proxied to PHP-FPM | 7 | - `/etc/php/$php_version/php-fpm.conf` - used when PHP requests are proxied to PHP-FPM |
8 | - additional configuration files/entries, depending on the installed/enabled extensions: | 8 | - additional configuration files/entries, depending on the installed/enabled extensions: |
9 | - `/etc/php/conf.d/xdebug.ini` | 9 | - `/etc/php/conf.d/xdebug.ini` |
10 | 10 | ||