6 lines
71 B
Bash
6 lines
71 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
set -euo pipefail
|
||
|
|
|
||
|
|
nginx -t
|
||
|
|
systemctl reload nginx
|