Skip to content

Commit 2929777

Browse files
committed
feat(admin): drop php 8.0
Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
1 parent db62e69 commit 2929777

6 files changed

Lines changed: 21 additions & 12 deletions

File tree

admin_manual/installation/php_configuration.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -118,15 +118,15 @@ You can search for a parameter with the following command: ``grep -r date.timezo
118118
**php.ini - used by the Web server:**
119119
::
120120

121-
/etc/php/8.0/apache2/php.ini
121+
/etc/php/8.3/apache2/php.ini
122122
or
123-
/etc/php/8.0/fpm/php.ini
123+
/etc/php/8.3/fpm/php.ini
124124
or ...
125125

126126
**php.ini - used by the php-cli and so by Nextcloud CRON jobs:**
127127
::
128128

129-
/etc/php/8.0/cli/php.ini
129+
/etc/php/8.3/cli/php.ini
130130

131131
.. note:: Path names have to be set in respect of the installed PHP
132-
(8.0, 8.1 or 8.2) as applicable.
132+
(8.1, 8.2 or 8.3) as applicable.

admin_manual/installation/source_installation.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ Here are some example root paths for these ini/config files:
250250
+-----------------------+-----------------------+
251251
| Debian/Ubuntu/Mint | CentOS/Red Hat/Fedora |
252252
+-----------------------+-----------------------+
253-
| ``/etc/php/8.0/fpm/`` | ``/etc/php-fpm.d/`` |
253+
| ``/etc/php/8.3/fpm/`` | ``/etc/php-fpm.d/`` |
254254
+-----------------------+-----------------------+
255255

256256
In both examples, the ini/config file is called ``www.conf``, and depending on
@@ -277,7 +277,7 @@ you must add them.
277277

278278
Alternatively it is possible to use the environment variables of your system by modifying::
279279

280-
/etc/php/8.0/fpm/pool.d/www.conf
280+
/etc/php/8.3/fpm/pool.d/www.conf
281281

282282
and uncommenting the line::
283283

admin_manual/installation/system_requirements.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,9 @@ For best performance, stability and functionality we have documented some recomm
3131
| Webserver | - **Apache 2.4 with** ``mod_php`` **or** ``php-fpm`` (recommended) |
3232
| | - nginx with ``php-fpm`` |
3333
+------------------+-----------------------------------------------------------------------+
34-
| PHP Runtime | - 8.0 (*deprecated*) |
35-
| | - 8.1 |
36-
| | - **8.2** (*recommended*) |
37-
| | - 8.3 |
34+
| PHP Runtime | - 8.1 (*deprecated*) |
35+
| | - 8.2 |
36+
| | - **8.3** (*recommended*) |
3837
+------------------+-----------------------------------------------------------------------+
3938

4039
See :doc:`source_installation` for minimum PHP-modules and additional software for installing Nextcloud.

admin_manual/issues/general_troubleshooting.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ Web server and Nextcloud itself.
171171
Linux distros or operating systems they can differ.
172172

173173
* The logfile of Apache2 is located in ``/var/log/apache2/error.log``.
174-
* The logfile of PHP can be configured in your ``/etc/php/8.0/apache2/php.ini``.
174+
* The logfile of PHP can be configured in your ``/etc/php/8.3/apache2/php.ini``.
175175
You need to set the directive ``log_errors`` to ``On`` and choose the path
176176
to store the logfile in the ``error_log`` directive. After those changes you
177177
need to restart your Web server.
@@ -195,7 +195,7 @@ these modules:
195195
* mod_security
196196
* mod_reqtimeout
197197
* mod_deflate
198-
* libapache2-mod-php*filter (use libapache2-mod-php8.0 instead)
198+
* libapache2-mod-php*filter (use libapache2-mod-php8.3 instead)
199199
* mod_spdy together with libapache2-mod-php5 / mod_php (use fcgi or php-fpm
200200
instead)
201201
* mod_dav

admin_manual/release_notes/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ These sub pages will cover the most important changes in Nextcloud, as well as s
1414
.. toctree::
1515
:maxdepth: 1
1616

17+
upgrade_to_30.rst
1718
upgrade_to_28.rst
1819
upgrade_to_27.rst
1920
upgrade_to_26.rst
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
=======================
2+
Upgrade to Nextcloud 30
3+
=======================
4+
5+
System requirements
6+
-------------------
7+
8+
* PHP 8.1 is now deprecated but still supported.
9+
* PHP 8.0 is no longer supported.

0 commit comments

Comments
 (0)