Reputation: 7443
I can run apache2ctl -S
on my debian box and it outputs information about the virtual hosts on the server and other information.
However, when I issue man apache2ctl
on my debian box, I don't see any documentation for the the -S
switch or any other switches for that matter. Where can I find this documentation?
Upvotes: 1
Views: 252
Reputation: 656
The man page states that apachectl acts either as passthrough frontend script for httpd binary itself or as service control script for starting, stopping, reloading. In turn You can / should consult the man page for httpd to find the information about such switches.
Upvotes: 3