Welcome to the Inedo Forums! Check out the Forums Guide for help getting started.
If you are experiencing any issues with the forum software, please visit the Contact Form on our website and let us know!
How does BuildMaster integrate with Apache Web Server
-
Hello,
How does BuildMaster integrate with Apache Web Server? Is there documentation regarding configuration of BuildMaster to operate with Apache Web Server?Also, is there documentation and tutorials regarding integrating with TeamCity build? I currently use TeamCity to build artifacts from my web source control. I am very interested to use BuildMaster to deploy my TeamCity artifacts.
Thanks for your help and kind direction,
BretProduct: BuildMaster
Version: 6.1.4
-
Hi Bret,
A tutorial for TeamCity is here: https://inedo.com/support/tutorials/buildmaster/teamcity/choosing-specific-artifact-from-teamcity
Future note, the TeamCity tutorial may be moved to https://github.com/inedo/inedox-teamcity/wiki as part of a docs re-organization.
As for controlling Apache, this is done through the
httpd
command, which can be executed with anExec
operation in your deployment plans, e.g.:# Deploy to Apache { Exec httpd -k stop; # deploy artifacts... Exec httpd -k start; }