6
0
mirror of https://github.com/ChristianLight/tutor.git synced 2025-01-24 05:58:24 +00:00

7 lines
273 B
Bash
Raw Normal View History

#!/bin/sh
2018-09-29 15:09:19 +02:00
certbot certonly --standalone -n --agree-tos -m admin@{{ LMS_HOST }} -d {{ LMS_HOST }} -d {{ CMS_HOST }} -d preview.{{ LMS_HOST }}
{% if ACTIVATE_NOTES %}
certbot certonly --standalone -n --agree-tos -m admin@{{ LMS_HOST }} -d notes.{{ LMS_HOST }}
{% endif %}