7 行
80 B
Bash
7 行
80 B
Bash
|
|
#!/bin/sh
|
||
|
|
# 证书更新后执行 nginx 重载
|
||
|
|
|
||
|
|
set -eu
|
||
|
|
|
||
|
|
systemctl reload nginx
|