Ngnix Reload
2023-12-06
#!/bin/bash
# Nginx config file path
CONFIG_FILE="/etc/nginx/nginx.conf"
# Test whether the new configuration is correct
nginx -t -c ${CONFIG_FILE}
# Reload Nginx with new configuration
nginx -s reload -c ${CONFIG_FILE}
echo "Nginx reloaded successfully!"
发表评论: