Skip to content

Commit

Permalink
Fix config initialisation
Browse files Browse the repository at this point in the history
  • Loading branch information
k0gen committed Dec 4, 2024
1 parent 2e234da commit 656a304
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions docker_entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ add_or_update_section "$confd/smp-server.ini" "PROXY" "socks_proxy: 172.18.0.1:9
# Add or update WEB section
add_or_update_section "$confd/smp-server.ini" "WEB" "static_path: /var/opt/simplex/www"

# Add or update TRANSPORT section with correct port
add_or_update_section "$confd/smp-server.ini" "TRANSPORT" "host: <hostnames>\nport: 5223\nlog_tls_errors: off\nwebsockets: off"

# Check if xftp-server has been initialized
if [ ! -f "$xftp/file-server.ini" ]; then
# Init certificates and configs
Expand Down
2 changes: 1 addition & 1 deletion manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
id: simplex
title: "SimpleX Server"
version: 6.1.3
version: 6.1.3.1
release-notes: |
- Updated to the latest upstream code with notable changes:
* Servers: more reliable restoring of state.
Expand Down
2 changes: 1 addition & 1 deletion scripts/procedures/migrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ export const migration: T.ExpectedExports.migration =
),
},
},
"6.1.3"
"6.1.3.1"
);

0 comments on commit 656a304

Please sign in to comment.