forked from cory/tildefriends
.gitea
apps
core
deps
docs
metadata
src
tools
autotest.py
buttfeed.py
emojis.py
ios-distribute
letsencrypt.sh
ssl-local
update-lit.sh
.clang-format
.dockerignore
.git-blame-ignore-revs
.gitignore
.gitmodules
.prettierignore
.prettierrc.yaml
CONTRIBUTING.md
Dockerfile
Doxyfile
GNUmakefile
LICENSE
README.md
default.nix
flake.lock
flake.nix
package-lock.json
package.json
git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3530 ed5197a5-7fde-0310-b194-c3ffbd925b24
26 lines
698 B
Bash
Executable File
26 lines
698 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# --config-dir, --logs-dir, and --work-dir
|
|
|
|
|
|
#certbot certonly \
|
|
# --webroot \
|
|
# --webroot-path data/global/ \
|
|
# -d www.tildefriends.net \
|
|
# -d tildefriends.net \
|
|
# --config-dir data/global/letsencrypt/etc \
|
|
# --logs-dir data/global/letsencrypt/logs \
|
|
# --work-dir data/global/letsencrypt/work \
|
|
# --cert-path data/global/httpd/certificate.pem \
|
|
# --key-path data/global/httpd/privatekey.pem \
|
|
|
|
certbot renew \
|
|
--webroot \
|
|
--webroot-path data/global/ \
|
|
--config-dir data/global/letsencrypt/etc \
|
|
--logs-dir data/global/letsencrypt/logs \
|
|
--work-dir data/global/letsencrypt/work \
|
|
--cert-path data/global/httpd/certificate.pem \
|
|
--key-path data/global/httpd/privatekey.pem \
|
|
$*
|