diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..23231ce --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..ba01819 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/sabre-dav/templates/container/baikal.container.j2 b/sabre-dav/templates/container/baikal.container.j2 index 8b49dc5..a39a77c 100644 --- a/sabre-dav/templates/container/baikal.container.j2 +++ b/sabre-dav/templates/container/baikal.container.j2 @@ -7,7 +7,7 @@ AutoUpdate=registry PublishPort={{ baikal.port }}:80/tcp Volume={{ baikal.base_directory }}/{{ baikal.data_directory }}:/var/www/baikal/Specific:Z Volume={{ baikal.base_directory }}/{{ baikal.config_directory }}:/var/www/baikal/config:Z - +Environment=MSMTPRC={{ baikal.mail }} [Service] # Inform systemd of additional exit status diff --git a/sabre-dav/variables.yaml b/sabre-dav/variables.yaml index 9831ee6..a84f9d3 100644 --- a/sabre-dav/variables.yaml +++ b/sabre-dav/variables.yaml @@ -2,7 +2,18 @@ setup_selinux: true setup_firewall: true # exposes the firewall ports baikal: container_image: "docker.io/ckulka/baikal:nginx" - port: 7777 + port: 8069 base_directory: "/baikal" data_directory: "data" - config_directory: "config" \ No newline at end of file + config_directory: "config" + mail: | + defaults + auth on + tls on + tls_trust_file /etc/ssl/certs/ca-certificates.crt + account default + host + port 587 + from baikal@example.com + user + password \ No newline at end of file