7 lines
217 B
Bash
7 lines
217 B
Bash
#!/bin/bash -e
|
|
# https://habr.com/ru/articles/735712/
|
|
|
|
STEP=$((STEP+1))
|
|
echo -e "\n> > > > Шаг №$STEP. Просим certbot обновить"
|
|
certbot certonly --manual --preferred-challenges http -d "kornerr.ru"
|