mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 12:33:08 +02:00
13 lines
146 B
Bash
13 lines
146 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
certbot certonly --standalone \
|
||
|
-d $1
|
||
|
-d api.$1
|
||
|
-d auth.$1
|
||
|
-d about.$1
|
||
|
-d ch.$1
|
||
|
-d stats.$1
|
||
|
-d status.$1
|
||
|
-d dev.$1
|
||
|
-d file.$2
|