Commit c932d017 authored by Bertrand Gauthier's avatar Bertrand Gauthier
Browse files

Nécessaire pour unicaen/livelog (utilisé par unicaen/db-import).

parent 1fb933b7
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@ return [
        'UnicaenLdap',
        'UnicaenDbImport',
        'UnicaenFaq',
        'UnicaenLivelog',
        'Import',
        'Indicateur',
        'Retraitement',
+2 −0
Original line number Diff line number Diff line
@@ -17,6 +17,8 @@ services:
     - .:/app
     - /tmp:/tmp
     - $HOME/.ssh:/root/.ssh
     - ./docker/apache/livelog.conf:/etc/apache2/conf-available/livelog.conf
     - ./docker/entrypoint.d/009_livelog:/entrypoint.d/009_livelog
    working_dir: /app
    networks:
      - sygalnet
+7 −0
Original line number Diff line number Diff line
#
# Websocket pour unicaen/livelog.
# ==> accessible de l'extérieur à l'adresse wss://serveur.unicaen.fr/livelog
#
SSLProxyEngine On
ProxyPass        /livelog  ws://0.0.0.0:7443
ProxyPassReverse /livelog  ws://0.0.0.0:7443
+10 −0
Original line number Diff line number Diff line
#!/usr/bin/env bash

a2enmod proxy_wstunnel
a2enconf livelog

# Impossible de lancer les sockets ici :
#   Laminas\ServiceManager\Exception\ServiceNotCreatedException: Service with name "BjyAuthorize\Guards" could not be created.
#   Reason: An exception occurred in driver: SQLSTATE[08006] [7] FATAL:  le système de bases de données se lance
#   in /app/vendor/laminas/laminas-servicemanager/src/ServiceManager.php on line 620
#php /app/public/index.php unicaen-livelog run-sockets --verbose 0
+12 −0
Original line number Diff line number Diff line
@@ -731,4 +731,16 @@ span.badge.REJETEE,
span.badge.badge-error {
  background: #d23544; }

.livelog-panel {
  line-height: normal;
  font-family: monospace;
  font-size: 9px;
  border: 2px grey dotted;
  height: 300px;
  overflow-y: scroll;
  overflow-x: scroll;
  white-space: nowrap;
  padding: 0.5em;
  margin-top: 1em; }

/*# sourceMappingURL=app.css.map */
Loading