mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-06-29 05:35:32 +02:00
Compare commits
No commits in common. "daceed8cd533b77a7a23d58c7db484c71cff0743" and "06a45ead4a432a3508c73cf5e790e8836fb6d5af" have entirely different histories.
daceed8cd5
...
06a45ead4a
@ -29,7 +29,6 @@ services:
|
||||
- "{{ ip4_address }}:995:995"
|
||||
- "{{ ip4_address }}:143:143"
|
||||
- "{{ ip4_address }}:993:993"
|
||||
- "{{ ip4_address }}:4190:4190"
|
||||
volumes:
|
||||
- "/etc/mailu/overrides/nginx:/overrides:ro"
|
||||
- "/etc/mailu/certs:/certs"
|
||||
@ -126,7 +125,7 @@ services:
|
||||
|
||||
# Optional services
|
||||
antivirus:
|
||||
image: clamav/clamav-debian:latest
|
||||
image: ghcr.io/mailu/clamav:{{mailu_version}}
|
||||
restart: {{docker_restart_policy}}
|
||||
env_file: mailu.env
|
||||
volumes:
|
||||
|
@ -142,10 +142,16 @@ LOG_LEVEL=WARNING
|
||||
###################################
|
||||
# Database settings
|
||||
###################################
|
||||
SQLALCHEMY_DATABASE_URI_ROUNDCUBE=mysql://{{database_username}}:{{database_password}}@{{database_host}}/{{database_name}}?collation=utf8mb4_unicode_ci
|
||||
SQLALCHEMY_DATABASE_URI=mysql+mysqlconnector://{{database_username}}:{{database_password}}@{{database_host}}/{{database_name}}?collation=utf8mb4_unicode_ci
|
||||
DB_FLAVOR=mysql
|
||||
DB_USER={{database_username}}
|
||||
DB_PW={{database_password}}
|
||||
DB_HOST={{database_host}}:3306
|
||||
DB_NAME={{database_name}}
|
||||
ROUNDCUBE_DB_FLAVOR=mysql
|
||||
ROUNDCUBE_DB_USER={{database_username}}
|
||||
ROUNDCUBE_DB_PW={{database_password}}
|
||||
ROUNDCUBE_DB_NAME={{database_name}}
|
||||
ROUNDCUBE_DB_HOST={{database_host}}:3306
|
||||
|
||||
|
||||
API_TOKEN={{mailu_api_token}}
|
||||
|
||||
# Activated https://mailu.io/master/configuration.html#advanced-settings
|
||||
AUTH_REQUIRE_TOKENS=True
|
Loading…
x
Reference in New Issue
Block a user