6 コミット 8e376831d0 ... 7857476015

作者 SHA1 メッセージ 日付
  lauhub 7857476015 précision configuration Proxmox 1 週間 前
  lauhub 7ac1862b20 Ajout introduction docling 1 週間 前
  lauhub 406b61f568 Ajout Hister moteur de recherche local 1 週間 前
  lauhub cd2c50a0f6 Installation onlyoffice sur serveur 1 週間 前
  lauhub 497ad732ae Ajout forçage de la vérification des fingerprints 1 週間 前
  lauhub f10125f0b6 ajout information quota 1 週間 前

+ 3 - 1
applications/docling.md

@@ -1,6 +1,8 @@
 % Docling
 
-COnversion de documents
+# Introduction
+
+docling est un outil de Conversion de documents
 
 
 # Prérequis

+ 64 - 1
applications/hister-search-engine-firefox-bookmarks.md

@@ -20,7 +20,70 @@ sudo ln -s hister_0.11.0_darwin_arm64 hister
 chmod +x hister_0.11.0_darwin_arm64
 ```
 
-5. Exécution du serveur : `hister listen`
 
+5. Créer un fichier de configuration dans `$HOME/.config/hister/config.yml`
+6. Exécuter `hister create-config` pour générer un nouveau contenu (ou voir contenu ci-dessous)
+7. Exécution du serveur : `hister listen`
 
 
+## Fichier de configuration
+
+```yml
+app:
+  directory: '~/.config/hister'
+  search_url: 'https://google.com/search?q={query}'
+  log_level: 'info'
+  open_results_on_new_tab: false
+
+server:
+  address: '127.0.0.1:4433'
+  base_url: 'http://127.0.0.1:4433'
+  database: 'db.sqlite3'
+
+#indexer:
+#  detect_languages: true
+#  directories:
+#    - path: '~/notes'
+#      filetypes: ['txt', 'md']
+
+crawler:
+  backend: 'http'
+  timeout: 5
+  delay: 1
+  user_agent: 'Hister'
+
+hotkeys:
+  web:
+    '/': 'focus_search_input'
+    'enter': 'open_result'
+    'alt+enter': 'open_result_in_new_tab'
+    'alt+j': 'select_next_result'
+    'alt+k': 'select_previous_result'
+    'alt+o': 'open_query_in_search_engine'
+    'alt+v': 'view_result_popup'
+    'tab': 'autocomplete'
+    '?': 'show_hotkeys'
+
+sensitive_content_patterns:
+  aws_access_key: 'AKIA[0-9A-Z]{16}'
+  github_token: '(ghp|gho|ghu|ghs|ghr)_[a-zA-Z0-9]{36}'
+  banque: '.*(cmb|creditmutuel).*'
+  mutuelle: '.*\.*malakoffhumanis\..*'
+  divers1: 'ygg'
+  divers2: 'c411'
+
+
+```
+
+## Importation
+
+```bash
+hister import firefox ~/chemin/vers/Firefox/Profiles/identifiant-profil/places.sqlite
+```
+
+## Recherche
+
+Aller à la page de recherche locale: [http://127.0.0.1:4433](http://127.0.0.1:4433)
+
+Faire la recherche
+

+ 29 - 0
applications/onlyoffice.md

@@ -0,0 +1,29 @@
+% OnlyOffice
+
+Intégration
+
+
+Success! Installation completed
+==========
+onlyoffice was successfully installed :)
+
+To integrate the office editor into your app (Nextcloud, Seafile, etc.):
+1. Install the connector extension dedicated to your application
+2. Configure the following settings in the extension configuration and save (or restart the service if it is a config file):
+  - Document Server address: “https://office.aezi.fr/”
+  - JWT secret key: Keepass Ladmyn 
+3. Test editing or creating a document.
+
+More information is available in the documentation for this package `Web administration > App > OnlyOffice`.
+
+If you are facing any problem or want to improve this app, please open a new issue here: <https://github.com/YunoHost-Apps/onlyoffice_ynh>
+==========
+WARNING: You should check the app notifications above before continuing, there might be important stuff to know. [Press enter to continue]:
+
+Erreur durant la tentative de connexion (cURL error 60: SSL certificate problem: self-signed certificate in certificate chain (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://office.aezi.fr/healthcheck)
+
+
+
+
+
+

+ 11 - 0
gnu-linux/quota.md

@@ -0,0 +1,11 @@
+% Mise en place de quota
+
+
+```bash
+sudo apt install quota quotatool
+```
+
+Éditer le fichier `/etc/fstab` pour ajouter l'option `usrquota` sur la partition qui doit les gérer
+
+
+

+ 1 - 1
gnu-linux/serveurs/proxmox/configuration-utilisateurs.md

@@ -1,4 +1,4 @@
-% Configuration des utilisateurs
+% Configuration des utilisateurs PROXMOX
 
 Voir: [User Management - Proxmox VE](https://pve.proxmox.com/wiki/User_Management)
 

+ 5 - 1
ssh/tunnel-autossh.md

@@ -125,7 +125,11 @@ SSH_ORIGINAL_COMMAND="tunnel_check 6022" /home/tunnel/bin/tunnelcheck
 
 :::important
 
-Procéder à la vérification des *fingerprint* si nécessaire
+Procéder à la vérification des *fingerprint* 
+
+```
+sudo -u tunnel ssh -o PasswordAuthentication=no -p 6022 -n -f localhost exit 2>&1
+```
 
 :::