Changements récents - Rechercher:

Comite de pilotage

Comité stratégique?

Groupes de travail

Groupes Locaux?

Outils informatiques?

Ressources

Espace Professionnels?

Aide

éditer les menus

CR6Oct2020

  • Modifier le destinataire des mails quand on se connecte OVH => tech@florain.fr
  • Demande de licence sociale Cyclos => fait
  • Corriger l'image sur page d'accueil => le texte est modifiable dans Traduction de l'interface > ACCESS.LOGIN.register.text
  • Comment accéder au serveur sur OVH ?
  • Pour quoi avoir supprimé cyclos.guigeek.org ? => rétablit
  • Comment les pros vont pouvoir expérimenter ? Il faut alimenter leur compte virtuel
  • Comment accéder à la BDD Cyclos pour vider les tables ? en ssh
    • delete from account_balances where account_id in (select id from accounts where user_id in (select id from users where status ='PURGED'));
    • delete from accounts where user_id in (select id from users where status ='PURGED');
    • delete from user_status_logs where user_id in (select id from users where status ='PURGED');
    • delete from messages_to_users where user_id in (select id from users where status ='PURGED');
    • delete from ad_history_logs;
    • delete from notified_ad_interests;
    • delete from ads where owner_id in (select id from users where status ='PURGED');
    • delete from users where status = 'PURGED';
    • delete from entity_property_logs;
    • delete from entity_logs;

<<<<<<<

  • Comment empêcher Cyclos de bloquer l'adresse IP qui se trompe 3 fois de mot de passe ? Car l'adresse sera celle du reverse proxy, donc si n'importe quel user se trompe 3 fois, tout le monde est bloqué

<code> /etc/nginx/sites-enabled/cyclos add the line : proxy_set_header cyclos.header.remoteAddress $remote_addr;

Cyclos 4 PRO Documentation13sending a new HTTP to Tomcat and forwarding the response to the client. Examples of suchproxies include Apache with mod_proxy, Nginx, haproxy and Amazon's Elastic Load Balancing.In either way, generally the proxy will have the server certificate and will terminate the SSLconnection with the client. The second request, to Tomcat, will generally use a plain HTTPconnection.That means the client IP address received by Cyclos, as well as the request URL are differentthan the original request performed by the client. As Cyclos uses the client IP for logging andblocking in case of abuse, this would lead Cyclos to block the proxy, preventing any furtherrequest. However, the proxy will add some extra request headers, with information aboutthe original request. Cyclos then needs to be configured to read both the IP address andwhich was the connection protocol used by the original request (HTTP or HTTPS) from thoseheaders, instead of directly from the incoming HTTP request. As such, the following settingsin cyclos.properties are needed:• cyclos.header.remoteAddress: Specifies the name of the header which contains the originalclient's IP address. The name of this header is usually X-Forwarded-For.• cyclos.header.protocol: Specifies the protocol name (http or https) used on the originalrequest. The name of this header is usually X-Forwarded-Proto. </code>

 =>

>>>>>>>

  • Migration des données : comment uploader tous les pros

TODO : extraire la liste xml puis la convertir en json. Parser le fichier json avec le script python et appeler l'API pour créer les users.

Éditer - Historique - Imprimer - Changements récents - Rechercher
Page mise à jour le 09 November 2020 à 22h08