Apache configuration for Ubuntu users:
sudo vim /etc/apache2/ports.conf :
NameVirtualHost *:8088 Listen 8088
sudo vim /etc/apache2/sites-available/default :
NameVirtualHost *:8088 <VirtualHost *:8088> ... </VirtualHost>
Apache configuration for Ubuntu users:
sudo vim /etc/apache2/ports.conf :
NameVirtualHost *:8088 Listen 8088
sudo vim /etc/apache2/sites-available/default :
NameVirtualHost *:8088 <VirtualHost *:8088> ... </VirtualHost>
So, this doesn’t actually moontir apache, it just executes apachectl start every five seconds, so yeah, apache is always running…Try: god -c /path/to/your_conf.god -DThe -D makes god not go into the background, and you can watch it try to restart apache constantly.Adding a line like the following will allow God to check the pid of the process before determining it is not running: w.pid_file = /var/run/httpd.pid’Regards,-david