/ Published in: Apache
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
Create a file in /etc/cron.hourly/ chmod it to 755 make it contain: #!/bin/bash if [ -z "$(pidof httpd)" ]; then service httpd restart; fi