Merge pull request #282 from WordOps/updating-configuration

v3.12.2 Hotfix
This commit is contained in:
VirtuBox 2020-05-15 13:13:26 +02:00 committed by GitHub
commit e82985a7d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 21 additions and 4 deletions

View File

@ -8,6 +8,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
### v3.9.x - [Unreleased]
### v3.12.2 - 2020-05-15
#### Fixed
- Wrong PHP upstream for WordOps backend
### v3.12.1 - 2020-05-14
#### Fixed

View File

@ -9,7 +9,7 @@
# -------------------------------------------------------------------------
# wget -qO wo wops.cc && sudo -E bash wo
# -------------------------------------------------------------------------
# Version 3.12.1 - 2020-05-14
# Version 3.12.2 - 2020-05-14
# -------------------------------------------------------------------------
# CONTENTS

View File

@ -27,7 +27,7 @@
os.makedirs('/var/lib/wo/tmp/')
setup(name='wordops',
version='3.12.1',
version='3.12.2',
description='An essential toolset that eases server administration',
long_description=LONG,
long_description_content_type='text/markdown',

View File

@ -42,7 +42,7 @@ server {
location ~ \.php$ {
try_files $uri =404;
include fastcgi_params;
fastcgi_pass php72;
fastcgi_pass multiphp;
}
location /netdata {

View File

@ -104,3 +104,14 @@ upstream redis {
server 127.0.0.1:6379;
keepalive 10;
}
#-------------------------------
# Multi PHP
#-------------------------------
# Multi PHP upstream for WordOps backend
upstream multiphp {
server unix:/var/run/php/php73-fpm.sock;
server unix:/var/run/php/php74-fpm.sock;
server unix:/var/run/php/php72-fpm.sock;
}

View File

@ -14,7 +14,7 @@ class WOVar():
"""Intialization of core variables"""
# WordOps version
wo_version = "3.12.1"
wo_version = "3.12.2"
# WordOps packages versions
wo_wp_cli = "2.4.0"
wo_adminer = "4.7.5"