mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2024-12-09 08:50:05 +08:00
[SOGo] Update SOGo to 5.5.1
**Includes Database Changes!** As a preparation for 5.5.2 the database as well as some NGINX Settings have been changed.
This commit is contained in:
commit
53a5254897
@ -22,6 +22,10 @@
|
||||
add_header X-Permitted-Cross-Domain-Policies none;
|
||||
add_header Referrer-Policy strict-origin;
|
||||
|
||||
proxy_buffer_size 128k;
|
||||
proxy_buffers 64 512k;
|
||||
proxy_busy_buffers_size 512k;
|
||||
|
||||
index index.php index.html;
|
||||
|
||||
client_max_body_size 0;
|
||||
@ -163,7 +167,7 @@
|
||||
proxy_connect_timeout 75;
|
||||
proxy_send_timeout 3600;
|
||||
proxy_read_timeout 3600;
|
||||
proxy_buffers 64 256k;
|
||||
#proxy_buffers 64 256k;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header Host $http_host;
|
||||
|
@ -3,7 +3,7 @@ function init_db_schema() {
|
||||
try {
|
||||
global $pdo;
|
||||
|
||||
$db_version = "18012022_1020";
|
||||
$db_version = "22032022_1330";
|
||||
|
||||
$stmt = $pdo->query("SHOW TABLES LIKE 'versions'");
|
||||
$num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
|
||||
@ -864,7 +864,7 @@ function init_db_schema() {
|
||||
"sogo_sessions_folder" => array(
|
||||
"cols" => array(
|
||||
"c_id" => "VARCHAR(255) NOT NULL",
|
||||
"c_value" => "VARCHAR(255) NOT NULL",
|
||||
"c_value" => "VARCHAR(4096) NOT NULL",
|
||||
"c_creationdate" => "INT(11) NOT NULL",
|
||||
"c_lastseen" => "INT(11) NOT NULL"
|
||||
),
|
||||
|
@ -166,7 +166,7 @@ services:
|
||||
- phpfpm
|
||||
|
||||
sogo-mailcow:
|
||||
image: mailcow/sogo:1.106
|
||||
image: mailcow/sogo:1.107
|
||||
environment:
|
||||
- DBNAME=${DBNAME}
|
||||
- DBUSER=${DBUSER}
|
||||
|
Loading…
Reference in New Issue
Block a user