Follow these steps:
nginx_install_dir/conf
This folder contains nginx.conf file.
server {
listen 80;
server_name <LOADBALANCER_HOSTNAME>;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
}
nginx_install_dir/conf
This folder contains pam-server.conf file.
server <Enter node1 hostname here>:8080 max_fails=3 fail_timeout=3s
server <Enter node1 hostname here>:8080 max_fails=3 fail_timeout=3s
server <hostname of machine where you have installed node1>:<jetty server port> max_fails=3 fail_timeout=3s
Replace the Enter node1 hostname here placeholders with a valid value. Do not change the port numbers unless you use a different port for the CA Process Automation node.
Note: The valid values are the IP address, the FQDN, or the DNS alias that resolves to the host where you are installing the initial Domain Orchestrator node. The valid value is the same value that is used for “Server Host” when installing the Domain Orchestrator.
Repeat these steps for each additional node that you install.
include nginx_install_dir/conf/pam-server.conf;
This entry links NGINX with the configuration changes you made for CA Process Automation in the pam-server.conf file.
include nginx_install_dir/nginx/conf.d/*.conf;
Important! Perform the rest of these steps after you install at least one Orchestrator node. See Interactive Domain Orchestrator Installation or Unattended Domain Orchestrator Installation for instructions.
For example:
server {
listen 80;
server_name <LOADBALANCER_HOSTNAME>;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
}
service nginx restart
The changes take effect.
|
Copyright © 2014 CA.
All rights reserved.
|
|