Update wo version
This commit is contained in:
2
install
2
install
@@ -9,7 +9,7 @@
|
|||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
# wget -qO wo wops.cc && sudo -E bash wo
|
# wget -qO wo wops.cc && sudo -E bash wo
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
# Version 3.13.3 - 2021-09-15
|
# Version 3.14.0 - 2022-01-24
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
|
|
||||||
# CONTENTS
|
# CONTENTS
|
||||||
|
|||||||
2
setup.py
2
setup.py
@@ -27,7 +27,7 @@ if os.geteuid() == 0:
|
|||||||
os.makedirs('/var/lib/wo/tmp/')
|
os.makedirs('/var/lib/wo/tmp/')
|
||||||
|
|
||||||
setup(name='wordops',
|
setup(name='wordops',
|
||||||
version='3.13.3',
|
version='3.14.0',
|
||||||
description='An essential toolset that eases server administration',
|
description='An essential toolset that eases server administration',
|
||||||
long_description=LONG,
|
long_description=LONG,
|
||||||
long_description_content_type='text/markdown',
|
long_description_content_type='text/markdown',
|
||||||
|
|||||||
@@ -85,6 +85,46 @@ upstream debug74 {
|
|||||||
server 127.0.0.1:9174;
|
server 127.0.0.1:9174;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#-------------------------------
|
||||||
|
# PHP 8.0
|
||||||
|
#-------------------------------
|
||||||
|
|
||||||
|
# PHP 8.0 upstream with load-balancing on two unix sockets
|
||||||
|
upstream php80 {
|
||||||
|
least_conn;
|
||||||
|
|
||||||
|
server unix:/var/run/php/php80-fpm.sock;
|
||||||
|
server unix:/var/run/php/php80-two-fpm.sock;
|
||||||
|
|
||||||
|
keepalive 5;
|
||||||
|
}
|
||||||
|
|
||||||
|
# PHP 8.0 debug
|
||||||
|
upstream debug80 {
|
||||||
|
# Debug Pool
|
||||||
|
server 127.0.0.1:9175;
|
||||||
|
}
|
||||||
|
|
||||||
|
#-------------------------------
|
||||||
|
# PHP 8.1
|
||||||
|
#-------------------------------
|
||||||
|
|
||||||
|
# PHP 8.1 upstream with load-balancing on two unix sockets
|
||||||
|
upstream php81 {
|
||||||
|
least_conn;
|
||||||
|
|
||||||
|
server unix:/var/run/php/php81-fpm.sock;
|
||||||
|
server unix:/var/run/php/php81-two-fpm.sock;
|
||||||
|
|
||||||
|
keepalive 5;
|
||||||
|
}
|
||||||
|
|
||||||
|
# PHP 8.1 debug
|
||||||
|
upstream debug81 {
|
||||||
|
# Debug Pool
|
||||||
|
server 127.0.0.1:9176;
|
||||||
|
}
|
||||||
|
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
# Netdata
|
# Netdata
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
|
|||||||
@@ -14,9 +14,9 @@ class WOVar():
|
|||||||
"""Intialization of core variables"""
|
"""Intialization of core variables"""
|
||||||
|
|
||||||
# WordOps version
|
# WordOps version
|
||||||
wo_version = "3.13.3-fork"
|
wo_version = "3.14.0"
|
||||||
# WordOps packages versions
|
# WordOps packages versions
|
||||||
wo_wp_cli = "2.4.0"
|
wo_wp_cli = "2.5.0"
|
||||||
wo_adminer = "4.7.5"
|
wo_adminer = "4.7.5"
|
||||||
wo_phpmyadmin = "5.0.2"
|
wo_phpmyadmin = "5.0.2"
|
||||||
wo_extplorer = "2.1.13"
|
wo_extplorer = "2.1.13"
|
||||||
|
|||||||
Reference in New Issue
Block a user