1. Need to edit our nginx settings: edit file (using vi...) /etc/nginx/conf.d/intigua.nginx.conf
Option 1 - bellow the lines:
server {
listen 443 default ssl;
listen 443 default ssl;
Add another line:
listen XXX default ssl;
to whatever port you woud like... For example: listen 4443 default ssl;
Outcome is
server {
listen 443 default ssl;
listen 443 default ssl;
listen 4443 default ssl;
2. In our connector service (Agent Configuration) put in the primary URLs: The following lines:
https://<IP ADDRESS>:<NEW PORT>/vmanage-server/ --> e.g. 4443
https://<IP ADDRESS>/vmanage-server/ --> This will serve as a backup plan. You can also put it in the secondary URLs...
This can be done on a new policy you'll deploy to the target endpoints.
3. Restart nginx (service nginx restart or /etc/init.d/nginx restart)
4. Restart tomcat
Comments
0 comments
Please sign in to leave a comment.