Skip to content
Snippets Groups Projects
Commit 63e9a6da authored by void's avatar void
Browse files

tuning der jabber options und reload bei zertifikaterneuerung

parent c96eb321
No related branches found
No related tags found
1 merge request!8Jabber umzug
This commit is part of merge request !8. Comments created here will be created in the context of that merge request.
......@@ -6,6 +6,14 @@
with_items:
- "/srv/jabber_test/"
- "/srv/jabber_test/etc"
- name: create folder struct for jabber_test 2
file:
path: "{{ item }}"
state: "directory"
owner: 102
group: 106
with_items:
- "/srv/jabber_test/logs"
- "/srv/jabber_test/data"
......
......@@ -148,8 +148,9 @@ archive_expires_after = "1w" -- Remove archived messages after 1 week
log = {
info = "/var/log/prosody/prosody.log"; -- Change 'info' to 'debug' for verbose logging
error = "/var/log/prosody/prosody.err";
info = "*console"; -- Log to the console
-- "*console"; -- Log to the console, useful for debugging with daemonize=false
-- "*syslog"; -- Uncomment this for logging to syslog
"*console"; -- Log to the console, useful for debugging with daemonize=false
}
-- Uncomment to enable statistics
......
......@@ -6,5 +6,5 @@ if [ ! -e venv/bin/python ]; then ./venv.sh; fi
cd /etc/ssl
PATH=/opt/simp_le/venv/bin:/usr/sbin:/usr/bin:/sbin:/bin
simp_le --email {{ letsencrypt_mail }} -f account_key.json -f key.pem -f fullchain.pem --tos_sha256 {{ letsencrypt_tos_sha256 }} {% for domain in webserver_domains %} -d {{ domain }}.warpzone.ms:/var/www/html {% endfor %} && systemctl reload nginx
simp_le --email {{ letsencrypt_mail }} -f account_key.json -f key.pem -f fullchain.pem --tos_sha256 {{ letsencrypt_tos_sha256 }} {% for domain in webserver_domains %} -d {{ domain }}.warpzone.ms:/var/www/html {% endfor %} && systemctl reload nginx && docker-compose -f /srv/jabber_test/docker-compose.yml restart
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment