12 lines
244 B
Python
12 lines
244 B
Python
from orchestra.contrib.settings import Setting
|
|
|
|
|
|
LETSENCRYPT_AUTO_PATH = Setting('LETSENCRYPT_AUTO_PATH',
|
|
'/home/httpd/letsencrypt/letsencrypt-auto'
|
|
)
|
|
|
|
|
|
LETSENCRYPT_LIVE_PATH = Setting('LETSENCRYPT_LIVE_PATH',
|
|
'/etc/letsencrypt/live'
|
|
)
|