Set default PHP version to 8.2

This commit is contained in:
VirtuBox
2023-12-01 16:54:51 +01:00
parent 89c34e021f
commit e7edc69cb7
3 changed files with 8 additions and 4 deletions

View File

@@ -15,6 +15,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- PHP 8.3 support
- force-ssl-{domain}.conf now available as a mustache template
#### Changed
- Default PHP version bump to 8.2
#### Fixed
- wo site update --phpXX errors in some case

View File

@@ -85,7 +85,7 @@ Detailed Getting Started guide with additional installation methods can be found
### Standard WordPress sites
```bash
wo site create example.com --wp # install wordpress with PHP 8.1 without any page caching
wo site create example.com --wp # install wordpress with PHP 8.2 without any page caching
wo site create example.com --wp --php83 # install wordpress with PHP 8.3 without any page caching
wo site create example.com --wpfc # install wordpress + nginx fastcgi_cache
wo site create example.com --wpredis # install wordpress + nginx redis_cache
@@ -120,11 +120,11 @@ wo site create example.com --wpsubdomain --wpce # install wpmu-subdomain + C
```bash
wo site create example.com --html # create example.com for static/html sites
wo site create example.com --php # create example.com with php 8.1 support
wo site create example.com --php # create example.com with php 8.2 support
wo site create example.com --php80 # create example.com with php 8.0 support
wo site create example.com --php81 # create example.com with php 8.1 support
wo site create example.com --php82 # create example.com with php 8.2 support
wo site create example.com --mysql # create example.com with php 8.1 & mysql support
wo site create example.com --mysql # create example.com with php 8.2 & mysql support
wo site create example.com --mysql --php83 # create example.com with php 8.3 & mysql support
wo site create example.com --proxy=127.0.0.1:3000 # create example.com with nginx as reverse-proxy
```

View File

@@ -79,7 +79,7 @@ keylength = "ec-384"
[php]
### Default PHP version
version = 8.1
version = 8.2
[mariadb]