Compare commits

...

3 Commits

Author SHA1 Message Date
uumas
f5735d39d3 windmill: fix native workers 2026-04-19 13:47:43 +03:00
uumas
792cf4ef39 synapse: Fix caddy path 2026-04-19 13:47:25 +03:00
uumas
c4256847c9 service: Allow specifying container hostname 2026-04-19 13:47:10 +03:00
5 changed files with 11 additions and 2 deletions

View File

@@ -9,6 +9,7 @@ service_proxy_pass_host_header: true
service_proxy_auth_type: none
service_container_ip: ""
service_container_hostname: ""
service_container_additional_networks: []
service_container_user: ""
service_container_publish_ports: []

View File

@@ -82,6 +82,11 @@ argument_specs:
type: str
required: false
default: ""
service_container_hostname:
description: Hostname to set inside the container.
type: str
required: false
default: ""
service_container_additional_networks:
description: >-
A list of additional podman networks for the service container (in

View File

@@ -44,6 +44,7 @@
container_devices: "{{ service_container_devices }}"
container_publish_ports: "{{ _service_container_publish_ports }}"
container_networks: "{{ _service_container_networks }}"
container_hostname: "{{ service_container_hostname }}"
container_secrets: "{{ _service_container_secrets }}"
container_env: "{{ service_container_env }}"
container_add_capabilities: "{{ service_container_add_capabilities }}"

View File

@@ -44,7 +44,7 @@
service_domains: "{{ [synapse_external_domain] }}"
service_vhost_locations:
- path: ^/_matrix/client/.*/(login|logout|refresh).*$
proxy_target_socket: /run/matrix-authentication-service-socat.sock
proxy_target_socket: /run/matrix-authentication-service-caddy-socket-proxy.sock
service_wants:
- matrix-authentication-service.service

View File

@@ -61,10 +61,12 @@
env:
DATABASE_URL_FILE: /run/secrets/postgres-url
MODE: worker
WORKER_TYPE: native
WORKER_GROUP: native
NATIVE_MODE: "true"
NUM_WORKERS: "8"
SLEEP_QUEUE: "200"
ENABLE_UNSHARE_PID: "true"
UNSHARE_ISOLATION_FLAGS: "--user --map-root-user --pid --fork"
- name: lsp
image: ghcr.io/windmill-labs/windmill-extra:latest
secrets: []