2021年1月10日 星期日

Multi-PHP version on the same server

Environment CentOS 8
Run Apache + PHP 8.0 + PHP 7.4 + PHP 5.6 on the same server

# Install EPEL
dnf -y install epel-release

# Install REMI repo
rpm -ivh http://rpms.remirepo.net/enterprise/remi-release-8.rpm

dnf -y install httpd httpd-devel httpd-tools mod_ssl
dnf -y module install php:remi-8.0
dnf -y install php56 php56-php-cli php56-php-common php56-php-fpm
dnf -y install php74 php74-php-cli php74-php-common php74-php-fpm
dnf -y install php74 php80-php-cli php80-php-common php80-php-fpm
systemctl enable --now php56-php-fpm.service
systemctl enable --now php74-php-fpm.service
systemctl enable --now php80-php-fpm.service

Create /etc/httpd/conf.d/vhost.conf

# Last, Restart Apache
systemctl restart httpd


沒有留言:

DNS-PERSIST-01 DCV

Let's encrypt 建立的新 DCV 方式  DNS-PERSIST-01 它是用綁定帳號,在域名直接設上 accounturi 的 TXT 資料, 來達到長效授權,之後經由綁定帳號來申請的憑證,就直接過了,不需再設定 DNS 已經上 Staging 環境 (--...