Changer le port sur lequel l’instance Cyberwatch est accessible

  1. Configurer les ports d’écoute :

    1. Avec Docker Swarm, ajouter les deux variables d’environnement dans le fichier /etc/cyberwatch/config.env :

      NGINX_HTTP_PORT=8080
      NGINX_HTTPS_PORT=8443
      
    2. Avec Kubernetes, modifier le fichier /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. Redémarrer Cyberwatch :

    sudo cyberwatch restart
    

Retour en haut