Bumped PHP Version to 8.3

This commit is contained in:
2024-01-12 23:46:30 +01:00
parent c9e33dd3c2
commit 1700628f9a
3 changed files with 8 additions and 8 deletions

View File

@@ -7,7 +7,7 @@ cd "$( dirname "$0" )"
if [ -z ${DistoBuilderINT+x} ]; then
ResourceFolder=/tmp
#Install required software
apk add dovecot php82-xml php82-fpm php82-curl php82-dom php82-zip php82-mbstring php82-openssl py3-pip sudo curl openssl
apk add dovecot php83-xml php83-fpm php83-curl php83-dom php83-zip php83-mbstring php83-openssl py3-pip sudo curl openssl
#Install Nginx and Nginx Repo
wget https://nginx.org/keys/nginx_signing.rsa.pub -O /etc/apk/keys/nginx_signing.rsa.pub
echo "@nginx http://nginx.org/packages/mainline/alpine/v$(egrep -o '^[0-9]+\.[0-9]+' /etc/alpine-release)/main" >> /etc/apk/repositories
@@ -36,8 +36,8 @@ mkdir /mail
chmod 777 /mail
#Configure Php-fpm
rm /etc/php82/php-fpm.d/*
mv Configs/php.conf /etc/php82/php-fpm.d/railoop.conf
rm /etc/php83/php-fpm.d/*
mv Configs/php.conf /etc/php83/php-fpm.d/railoop.conf
#Install Webmail
mkdir -p /opt/webmail/data/_data_/_default_/configs /opt/webmail/data/_data_/_default_/domains
@@ -73,10 +73,10 @@ rm -f /tmp/olim3.tar.gz /tmp/smc.tar.gz
#Start and enable service
rc-update add dovecot
rc-update add nginx
rc-update add php-fpm82
rc-update add php-fpm83
if [ -z ${DistoBuilderINT+x} ]; then
service dovecot start
service nginx start
service php-fpm82 start
service php-fpm83 start
fi