I have implemented a server sent events with eventsource on my web application. Basically in javascript my code look like :
    var myEventSource;
    if (typeof(EventSource) !== "undefined" && !myJsIssetFunction(viridem.serverSideEvent.config.reindexProcessingEvent)) {
        myEventSource = new EventSource('/my/url/path.php?event=myevent');
        EventSource.onmessage = function(e) {
          [...] //Dealing with e.data that i received ...
        }
    }
on the PHP side I have something Like this :
<?php
  header('Content-Type: text/event-stream');
  header('Cache-Control: no-cache');
  header("Access-Control-Allow-Origin: *");
  //this or set_the_limit don't work but whatever I can deal without it
  ini_set('max_execution_time', 300);
  //ignore_user_abort(true); tried with true and false
  bool $mustQuit = false;
  while (!$mustQuit && connection_status() == CONNECTION_NORMAL) {
     if(connection_aborted()){
      exit();
     }
     [...] //doing some checkup
    if ($hasChange) {
      //Output stuffs
      echo 'data:';
      echo json_encode($result);
      echo "\n\n";
      ob_flush();
      flush();
      sleep(5);
    }
  }
from the answer found at : PHP Event Source keeps executing , the "text/event-stream" headers should make the connection close automatically but it doesn't in my case ..
I did add an eventsource.close in the window.onbeforeunload event but it didn't close the event.
window.onbeforeunload =  function() {
    myEventSource.close();
    myEventSource = null;
};
If I look the network section of my browser I can see the Headers are (after adding maximum loop of 30) : Content-Type: text/event-stream;charset=UTF-8
Response Headers:
Access-Control-Allow-Origin: *
Cache-Control: no-cache
Connection: Keep-Alive
Content-Type: text/event-stream;charset=UTF-8
Server: Apache/2.4.18 (Ubuntu)
Date: Thu, 26 Apr 2018 20:29:46 GMT
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Request Headers:
Connection: keep-alive
Accept: text/event-stream
Cache-Control: no-cache
Note : I confirm that the script is still running with logs and by checking apache2 process with bash (ps -ax | grep -c apache2) that are always incrementing.
