Modificare la porta su cui è accessibile l’istanza Cyberwatch

  1. Configurare le porte di ascolto:

    1. Con Docker Swarm, aggiungere le due variabili d’ambiente nel file /etc/cyberwatch/config.env:

      NGINX_HTTP_PORT=8080
      NGINX_HTTPS_PORT=8443
      
    2. Con Kubernetes, modificare il file /etc/cyberwatch/containers.yml:

      nginx:
      
        ## HTTP port exposed on the node. Ignored if `ingress.enabled` is set to true.
        httpPort: 8080
      
        ## HTTPS port exposed on the node. Ignored if `ingress.enabled` is set to true.
        httpsPort: 8443
      
  2. Riavviare Cyberwatch:

    sudo cyberwatch restart