Skip to main content

apps

path configuration

  • appname
    • name of the application.
  • source
    • source path of the build folder.
  • destination
    • destination path of the build.
deployment-pipeline.yaml
#Syntax
apps:
<appname>:
source: "source-folder-path"
destination: "destination-folder-path"

#Example
apps:
opsriskapp:
source: "../opsriskapp"
destination: "/var/www/apps"

nginx configuration

deployment-pipeline.yaml
#Syntax
apps:
----
----
nginx:
subpath: "" #keep blank for root host
conf_file: "<template-file>" # specify the template config file name, and the config file must be there in template folder.

#Example
apps:
----
----
nginx:
subpath: "surya-opsriskapp" #or# ""
conf_file: "opsriskapp.conf"