mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-16 18:15:09 +00:00
c883af35f7
HTTPS is now fully supported. The ACTIVATE_HTTPS feature flag needs to be set. Required domain names are LMS_HOST, preview.LMS_HOST and CMS_HOST. Close #46.
3 lines
141 B
Bash
Executable File
3 lines
141 B
Bash
Executable File
#!/bin/sh
|
|
certbot certonly --standalone -n --agree-tos -m admin@{{ LMS_HOST }} -d {{ LMS_HOST }} -d {{ CMS_HOST }} -d preview.{{ LMS_HOST }}
|