mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
commit
d4fb3708e3
15 changed files with 214 additions and 107 deletions
|
@ -1,9 +1,31 @@
|
|||
# Add storage space
|
||||
# <img src="/images/nextcloud_logo.png" alt="logo de Nextcloud"> Nextcloud
|
||||
|
||||
Solution I) allows you to add a link to a local or remote folder.
|
||||
Solution II) allows to move the main storage space of nextcloud.
|
||||
- [Discovering the Nextcloud environment](#EnvironmentNextcloud)
|
||||
- [Mobile and computer client software](#ClientSoftware)
|
||||
- [Useful Manipulations & Problems Encountered](#UtileManipulations)
|
||||
- [Add space to Nextcloud](#AddSpace)
|
||||
- [Third Party Applications](#AppsTiers)
|
||||
- [Useful links](#UsefulLinks)
|
||||
|
||||
## I) Add an external storage space
|
||||
Nextcloud is a file hosting service, many applications can be installed to offer it new features such as a calendar, a directory, notes and many others (you can find some applications in the [third-party applications](#AppsTiers) part but there are many others depending on your needs).
|
||||
|
||||
## Discovering the Nextcloud environment <a name="EnvironmentNextcloud"></a>
|
||||
|
||||
Due to the creation of Nextcloud, a database with third-party applications to install, this chapter will only concern the nextcloud database without added applications. More information on applications in the dedicated section or in the nextcloud application catalogue: [apps.nextcloud.com](https://apps.nextcloud.com).
|
||||
Nextcloud is before a cloud service (like Seafile and others), it allows synchronization and file sharing on the Internet and between several terminals (computers, smartphone) but also with several people.
|
||||
|
||||
## Mobile and computer client software <a name="ClientSoftware"></a>
|
||||
|
||||
There are client software for all platforms. You can find them on the official nextcloud website: https://nextcloud.com/install/#install-clients
|
||||
|
||||
## Useful Manipulations & Problems Encountered <a name="UtileManipulations"></a>
|
||||
|
||||
### Add storage space <a name="AddSpace"></a>
|
||||
|
||||
Solution I. allows you to add a link to a local or remote folder.
|
||||
Solution II. allows to move the main storage space of nextcloud.
|
||||
|
||||
#### I. Add an external storage space
|
||||
|
||||
Parameter =>[Administration] External storage.
|
||||
|
||||
|
@ -13,7 +35,7 @@ You can restrict this folder to one or more nextcloud users with the column `Ava
|
|||
With the gear you can allow or prohibit previewing and file sharing.
|
||||
Finally click on the check mark to validate the folder.
|
||||
|
||||
## II) Migrate Nextcloud data to a larger partition
|
||||
#### II. Migrate Nextcloud data to a larger partition
|
||||
|
||||
**Note**: The following assumes that you have a hard disk mounted on `/media/storage`. Refer to[this article](/external_storage_en) to prepare your system.
|
||||
|
||||
|
@ -24,9 +46,9 @@ First turn off the web server with the command:
|
|||
systemctl stop nginx
|
||||
```
|
||||
|
||||
#### Choice of location
|
||||
##### Choice of location
|
||||
|
||||
#### Case A: Blank storage, exclusive to Nextcloud
|
||||
**Case A: Blank storage, exclusive to Nextcloud**
|
||||
|
||||
For the moment only root can write to it in `/media/storage`, which means that nginx and nextcloud will not be able to use it.
|
||||
|
||||
|
@ -35,7 +57,7 @@ chown -R nextcloud:nextcloud /media/storage
|
|||
chmod 775 -R /media/storage
|
||||
```
|
||||
|
||||
#### Case B: Shared storage, data already present, Nextcloud data in a subfolder
|
||||
**Case B: Shared storage, data already present, Nextcloud data in a subfolder**
|
||||
|
||||
If you want to use this disk for other applications, you can create a subfolder belonging to Nextcloud.
|
||||
|
||||
|
@ -45,7 +67,7 @@ chown -R nextcloud /media/storage/nextcloud_data
|
|||
chmod 775 -R /media/storage/nextcloud_data
|
||||
```
|
||||
|
||||
#### Migrate data
|
||||
##### Migrate data
|
||||
|
||||
Migrate your data to the new disk. To do this *(be patient, it can take a long time)*:
|
||||
|
||||
|
@ -54,8 +76,7 @@ Case A: cp -ia /home/yunohost.app/nextcloud /media/storage
|
|||
Case B: cp -ia /home/yunohost.app/nextcloud /media/storage/nextcloud_data
|
||||
```
|
||||
|
||||
The `i` option allows you to ask yourself what to do if there is a file conflict, especially if you overwrite an old Owncloud or Nextcloud data folder.
|
||||
|
||||
The `i` option allows you to ask yourself what to do if there is a file conflict, especially if you overwrite an old Owncloud or Nextcloud data folder.
|
||||
To check that everything went well, compare what these two commands display (the content must be identical):
|
||||
|
||||
```bash
|
||||
|
@ -65,7 +86,7 @@ Case A: ls -al /media/storage
|
|||
Case B: ls -al /media/storage/nextcloud_data/nextcloud
|
||||
```
|
||||
|
||||
#### Configure Nextcloud
|
||||
##### Configure Nextcloud
|
||||
|
||||
To inform Nextcloud of its new directory, modify the `/var/www/nextcloud/config/config.php` file with the command:
|
||||
|
||||
|
@ -112,46 +133,16 @@ sudo -u nextcloud php occ files:scan --all
|
|||
|
||||
It's over now. Now test if everything is fine, try connecting to your Nextcloud instance, upload a file, check its proper synchronization.
|
||||
|
||||
# The KeeWeb application
|
||||
|
||||
The KeeWeb application is a password manager integrated into Nextcloud. For example, it allows you to read a KeePass file (*.kdbx*) stored on your Nextcloud instance.
|
||||
But sometimes Nextcloud does not let the application support these files, which makes it impossible to read them from KeeWeb. To remedy this,
|
||||
[a solution](https://github.com/jhass/nextcloud-keeweb/issues/34) exists.
|
||||
|
||||
Go to the Nextcloud configuration directory:
|
||||
|
||||
```bash
|
||||
cd /var/www/nextcloud/config/
|
||||
```
|
||||
|
||||
If it does not exist, create the *mimetypemapping.json* file whose owner is the user *nextcloud* :
|
||||
|
||||
```bash
|
||||
sudo su nextcloud -c "nano mimetypemapping.json"
|
||||
```
|
||||
|
||||
Then add in this file the following text:
|
||||
|
||||
```bash
|
||||
{
|
||||
"kdbx": ["x-application/kdbx"]
|
||||
}
|
||||
```
|
||||
|
||||
Save the file (**CTRL** + **o**) and exit nano (**CTRL** + **c**).
|
||||
|
||||
Now the problem is fixed.
|
||||
|
||||
# Nextcloud and Cloudflare
|
||||
### Nextcloud and Cloudflare
|
||||
|
||||
If you use Cloudflare for your DNS, *which may be useful if you have a dynamic IP*, you will most likely have authentication problems with the Nextcloud application. On the Internet many people propose to create a rule that disables all options related to security and Cloudflare speed for the url pointing to your Nextcloud instance. Although it works, it is not the optimal solution. I propose, certainly to create a rule for the url pointing to your Nextcloud instance but to disable only 2 options. So here's how:
|
||||
|
||||
## Cloudflare Page Rules
|
||||
#### Cloudflare Page Rules
|
||||
|
||||
In the Cloudflare control panel select your domain and find Page Rules
|
||||
the url in your address bar will look like this: https://dash.cloudflare.com/*/domain.tld/page-rules
|
||||
the url in your address bar will look like this: https://dash.cloudflare.com/*/domain.tld/page-rules
|
||||
|
||||
#### Add a rule
|
||||
##### Add a rule
|
||||
|
||||
The rule to be added must apply to the url of your Nextcloud instance either:
|
||||
|
||||
|
@ -164,3 +155,17 @@ The options to disable (Off) are:
|
|||
- Email Obfuscation
|
||||
|
||||
Save and clean your caches (Cloudflare, browser,...) and that's it.
|
||||
|
||||
## Third Party Applications <a name="AppsTiers"></a>
|
||||
|
||||
- [Calendrier](app_nextcloud_calendar)
|
||||
- [contact](app_nextcloud_contact)
|
||||
- [KeeWeb](app_nextcloud_keeweb)
|
||||
- [Carnet](app_nextcloud_carnet)
|
||||
|
||||
## Useful links <a name="UsefulLinks"></a>
|
||||
|
||||
- Official website : [nextcloud.com](https://nextcloud.com/)
|
||||
- Application catalogue for nextcloud : [apps.nextcloud.com](https://apps.nextcloud.com/)
|
||||
- Find help and ask all your questions : [forum.yunohost.org](https://forum.yunohost.org/c/support)
|
||||
|
||||
|
|
|
@ -1,9 +1,31 @@
|
|||
# Ajouter de l'espace de stockage
|
||||
# <img src="/images/nextcloud_logo.png" alt="logo de Nextcloud"> Nextcloud
|
||||
|
||||
La solution I) permet d'ajouter un lien vers un dossier local ou distant.
|
||||
La solution II) permet de déplacer l'espace de stockage principal de nextcloud.
|
||||
- [Découverte de l'environnement de Nextcloud](#EnvironnementNextcloud)
|
||||
- [Logiciels Clients pour mobile et ordinateur](#LogicielsClients)
|
||||
- [Manipulations & Problèmes rencontrés utiles](#ManipulationsUtiles)
|
||||
- [Ajouter de l'espace à Nextcloud](#AjoutEspace)
|
||||
- [Applications tiers](#AppsTiers)
|
||||
- [Liens utiles](#liensutiles)
|
||||
|
||||
## I) Ajouter un espace de stockage externe
|
||||
Nextcloud est un service d'hébergement de fichiers, de nombreuses applications peuvent être installées afin de lui offrir de nouvelles fonctionnalités tel qu'un agenda, un répertoire de contacts, des notes et pleins d'autres possibles (vous pouvez trouver quelques applications dans la partie [applications tiers](#AppsTiers) mais il en existe une multitude suivant vos besoins).
|
||||
|
||||
## Découverte de l'environnement de Nextcloud<a name="EnvironnementNextcloud"></a>
|
||||
|
||||
Du fait de la constitution de Nextcloud, une base avec des applications tiers à installer, ce chapitre ne concernera que la base de nextcloud sans applications ajoutés. Plus d'informations sur les applications dans la partie dédiée ou sur le catalogue d'application de nextcloud : [apps.nextcloud.com](https://apps.nextcloud.com).
|
||||
Nextcloud est avant tout un service de cloud (comme Seafile et d'autres logiciels), il permet une synchronisation et le partage de fichiers sur internet et entre plusieurs terminaux (ordinateurs, smartphone) mais aussi avec plusieurs personnes.
|
||||
|
||||
## Logiciels Clients<a name="LogicielsClients"></a>
|
||||
|
||||
Il existe des logiciels clients pour de nombreux terminaux. Vous pouvez les retrouver sur le site de nextcloud : [nextcloud.com/install/#install-clients](https://nextcloud.com/install/#install-clients)
|
||||
|
||||
## Manipulations utiles & problèmes rencontrés<a name="ManipulationsUtiles"></a>
|
||||
|
||||
### Ajouter de l'espace à Nextcloud<a name="AjoutEspace"></a>
|
||||
|
||||
La solution I. permet d'ajouter un lien vers un dossier local ou distant.
|
||||
La solution II. permet de déplacer l'espace de stockage principal de nextcloud.
|
||||
|
||||
#### I. Ajouter un espace de stockage externe
|
||||
|
||||
Paramètre => [Administration] Stockages externe.
|
||||
|
||||
|
@ -13,7 +35,7 @@ Vous pouvez restreindre ce dossier à un ou plusieurs utilisateurs nextcloud ave
|
|||
Avec l'engrenage vous pouvez autoriser ou interdire la prévisualisation et le partage des fichiers.
|
||||
Enfin cliquer sur la coche pour valider le dossier.
|
||||
|
||||
## II) Migrer les données de Nextcloud dans une partition plus grosse
|
||||
#### II. Migrer les données de Nextcloud dans une partition plus grosse
|
||||
|
||||
**Remarque** : Ce qui suit suppose que vous avez un disque dur monté sur `/media/stockage`. Référez-vous à [cet article](/external_storage_fr) pour préparer votre système.
|
||||
|
||||
|
@ -24,9 +46,9 @@ Commencez par éteindre le serveur web avec la commande:
|
|||
systemctl stop nginx
|
||||
```
|
||||
|
||||
### Choix de l'emplacement
|
||||
##### Choix de l'emplacement
|
||||
|
||||
#### Cas A : Stockage vierge, exclusif à Nextcloud
|
||||
**Cas A : Stockage vierge, exclusif à Nextcloud**
|
||||
|
||||
Pour l'instant seul root peut y écrire dans `/media/stockage`; ce qui signifie que nginx et nextcloud ne pourront donc pas l'utiliser.
|
||||
|
||||
|
@ -35,7 +57,7 @@ chown -R nextcloud:nextcloud /media/stockage
|
|||
chmod 775 -R /media/stockage
|
||||
```
|
||||
|
||||
#### Cas B : Stockage partagé, données déjà présentes, données Nextcloud dans un sous-dossier
|
||||
**Cas B : Stockage partagé, données déjà présentes, données Nextcloud dans un sous-dossier**
|
||||
|
||||
Si vous souhaitez utiliser ce disque pour d'autres applications, vous pouvez créer un sous-dossier appartenant à Nextcloud.
|
||||
|
||||
|
@ -45,17 +67,16 @@ chown -R nextcloud /media/stockage/nextcloud_data
|
|||
chmod 775 -R /media/stockage/nextcloud_data
|
||||
```
|
||||
|
||||
### Migrer les données
|
||||
##### Migrer les données
|
||||
|
||||
Migrez vos données vers le nouveau disque. Pour ce faire *(soyez patient, cela peut être long)* :
|
||||
|
||||
```bash
|
||||
Cas A : cp -ia /home/yunohost.app/nextcloud /media/stockage
|
||||
Cas B : cp -ia /home/yunohost.app/nextcloud /media/stockage/nextcloud_data
|
||||
Cas A : cp -ir /home/yunohost.app/nextcloud /media/stockage
|
||||
Cas B : cp -ir /home/yunohost.app/nextcloud /media/stockage/nextcloud_data
|
||||
```
|
||||
|
||||
L'option `i` permet de vous demander quoi faire en cas de conflit de fichier, notamment si vous écrasez un ancien dossier de données Owncloud ou Nextcloud.
|
||||
|
||||
L'option `i` permet de vous demander quoi faire en cas de conflit de fichier, notamment si vous écrasez un ancien dossier de données Owncloud ou Nextcloud.
|
||||
Pour vérifier que tout s'est bien passé, comparer ce qu'affichent ces deux commandes (le contenu doit être identique):
|
||||
|
||||
```bash
|
||||
|
@ -65,7 +86,7 @@ Cas A : ls -al /media/stockage
|
|||
Cas B : ls -al /media/stockage/nextcloud_data/nextcloud
|
||||
```
|
||||
|
||||
### Configurer Nextcloud
|
||||
##### Configurer Nextcloud
|
||||
|
||||
Pour informer Nextcloud de son nouveau répertoire, modifiez le fichier `/var/www/nextcloud/config/config.php` avec la commande:
|
||||
|
||||
|
@ -112,49 +133,38 @@ sudo -u nextcloud php occ files:scan --all
|
|||
|
||||
C'est terminé. À présent testez si tout va bien, essayez de vous connecter à votre instance Nextcloud, envoyer un fichier, vérifiez sa bonne synchronisation.
|
||||
|
||||
# L'application KeeWeb
|
||||
|
||||
L'application KeeWeb est un gestionnaire de mots de passe incorporé à Nextcloud. Elle permet par exemple de lire un fichier de type KeePass (*.kdbx*) stocké sur votre instance Nextcloud.
|
||||
Mais il arrive parfois que Nextcloud ne laisse pas l'application prendre en charge ces fichiers, ce qui rend alors impossible leur lecture de KeeWeb. Pour remédier à cela,
|
||||
[une solution](https://github.com/jhass/nextcloud-keeweb/issues/34) existe.
|
||||
### Nextcloud et Cloudflare
|
||||
|
||||
Se rendre dans le répertoire de configuration de Nextcloud :
|
||||
Si vous utilisez Cloudflare pour vos DNS, *ce qui peut-être pratique si vous avez une IP dynamique*, vous aurez très probablement des problèmes d'authentification avec l'application Nextcloud. Sur Internet beaucoup de gens proposent de créer une règle ayant pour effet de désactiver toutes les options reliées à la sécurité et à la vitesse de Cloudflare pour l'URL pointant sur votre instance Nextcloud. Bien que cela fonctionne, ce n'est pas la solution optimale. Je vous propose, certes de créer une règle pour l'URL pointant sur votre instance Nextcloud, mais de désactiver seulement 2 options. Voici donc comment :
|
||||
|
||||
```bash
|
||||
cd /var/www/nextcloud/config/
|
||||
```
|
||||
|
||||
S'il n'existe pas, créer le fichier *mimetypemapping.json* dont le propriétaire est l'utilisateur *nextcloud* :
|
||||
|
||||
```bash
|
||||
sudo su nextcloud -c "nano mimetypemapping.json"
|
||||
```
|
||||
|
||||
Puis ajouter dans ce fichier le texte suivent :
|
||||
|
||||
```bash
|
||||
{
|
||||
"kdbx": ["x-application/kdbx"]
|
||||
}
|
||||
```
|
||||
|
||||
Enregistrer le fichier (**CTRL** + **o**) et quitter nano (**CTRL** + **c**).
|
||||
|
||||
A présent, le problème est corrigé.
|
||||
|
||||
# Nextcloud et Cloudflare
|
||||
|
||||
Si vous utilisez Cloudflare pour vos DNS, *ce qui peut-être pratique si vous avez une IP dynamique*, vous aurez très probablement des problèmes d'authentification avec l'application Nextcloud. Sur Internet beaucoup de gens proposent de créer une règle ayant pour effet de désactiver toutes les options reliées à la sécurité et à la vitesse de Cloudflare pour l'URL pointant sur votre instance Nextcloud. Bien que cela fonctionne, ce n'est pas la solution optimale. Je vous propose, certes de créer une règle pour l'URL pointant sur votre instance Nextcloud, mais de désactiver seulement 2 options. Voici donc comment :
|
||||
|
||||
## Cloudflare Page Rules
|
||||
#### Cloudflare Page Rules
|
||||
|
||||
Dans le panneau de contrôle de Cloudflare, choisissez votre domaine et trouvez Page Rules
|
||||
l'URL dans votre barre d'addresse ressemblera à : https://dash.cloudflare.com/*/domain.tld/page-rules
|
||||
### Ajouter une règle
|
||||
La règle à ajouter doit s'appliquer pour l'URL de votre instance Nextcloud soit :
|
||||
|
||||
#### Ajouter une règle
|
||||
|
||||
La règle à ajouter doit s'appliquer pour l'URL de votre instance Nextcloud soit :
|
||||
- `https://nextcloud.domain.tld/*` si vous utilisez un sous-domaine
|
||||
- `https://domain.tld/nextcloud/*` si vous avez déployé Nextcloud dans un répertoire
|
||||
|
||||
Les options à désactiver (Off) sont :
|
||||
|
||||
- Rocket Loader
|
||||
- Email Obfuscation
|
||||
|
||||
Sauvegarder et nettoyer vos caches (Cloudflare, navigateur, ...) et le tour est joué.
|
||||
|
||||
## Applications Tiers<a name="AppsTiers"></a>
|
||||
|
||||
+ [Calendrier](app_nextcloud_calendar_fr)
|
||||
+ [contact](app_nextcloud_contact_fr)
|
||||
+ [KeeWeb](app_nextcloud_keeweb_fr)
|
||||
+ [Carnet](app_nextcloud_carnet_fr)
|
||||
|
||||
## Quelques liens utiles<a name="liensutiles"></a>
|
||||
|
||||
+ Site officiel : [nextcloud.com (en)](https://nextcloud.com/)
|
||||
+ Catalogue d'application pour nextcloud : [apps.nextcloud.com](https://apps.nextcloud.com/)
|
||||
+ Trouver de l'aide et poser toutes vos questions : [forum.yunohost.org](https://forum.yunohost.org/c/support)
|
||||
|
|
29
app_nextcloud_keeweb.md
Normal file
29
app_nextcloud_keeweb.md
Normal file
|
@ -0,0 +1,29 @@
|
|||
# The KeeWeb application
|
||||
|
||||
The KeeWeb application is a password manager integrated into Nextcloud. For example, it allows you to read a KeePass file (*.kdbx*) stored on your Nextcloud instance.
|
||||
But sometimes Nextcloud does not let the application support these files, which makes it impossible to read them from KeeWeb. To remedy this,
|
||||
[a solution](https://github.com/jhass/nextcloud-keeweb/issues/34) exists.
|
||||
|
||||
Go to the Nextcloud configuration directory:
|
||||
|
||||
```bash
|
||||
cd /var/www/nextcloud/config/
|
||||
```
|
||||
|
||||
If it does not exist, create the *mimetypemapping.json* file whose owner is the user *nextcloud* :
|
||||
|
||||
```bash
|
||||
sudo su nextcloud -c "nano mimetypemapping.json"
|
||||
```
|
||||
|
||||
Then add in this file the following text:
|
||||
|
||||
```bash
|
||||
{
|
||||
"kdbx": ["x-application/kdbx"]
|
||||
}
|
||||
```
|
||||
|
||||
Save the file (**CTRL** + **o**) and exit nano (**CTRL** + **c**).
|
||||
|
||||
Now the problem is fixed.
|
38
app_nextcloud_keeweb_fr.md
Normal file
38
app_nextcloud_keeweb_fr.md
Normal file
|
@ -0,0 +1,38 @@
|
|||
# L'application KeeWeb
|
||||
|
||||
L'application Keeweb sur le catalogue de nextcloud - [apps.nextcloud.com/keeweb](https://apps.nextcloud.com/apps/keeweb)
|
||||
|
||||
- [Manipulations utiles et problèmes rencontrés](#ManipulationsUtiles)
|
||||
- [Liens utiles](#liensutiles)
|
||||
|
||||
L'application KeeWeb est un gestionnaire de mots de passe incorporé à Nextcloud. Elle permet par exemple de lire un fichier de type KeePass (*.kdbx*) stocké sur votre instance Nextcloud.
|
||||
|
||||
## Manipulations utiles & problèmes rencontrés <a name="ManipulationsUtiles"></a>
|
||||
Mais il arrive parfois que Nextcloud ne laisse pas l'application prendre en charge ces fichiers, ce qui rend alors impossible leur lecture de KeeWeb. Pour remédier à cela,
|
||||
[une solution](https://github.com/jhass/nextcloud-keeweb/issues/34) existe.
|
||||
|
||||
Se rendre dans le répertoire de configuration de Nextcloud :
|
||||
|
||||
```bash
|
||||
cd /var/www/nextcloud/config/
|
||||
```
|
||||
|
||||
S'il n'existe pas, créer le fichier *mimetypemapping.json* dont le propriétaire est l'utilisateur *nextcloud* :
|
||||
|
||||
```bash
|
||||
sudo su nextcloud -c "nano mimetypemapping.json"
|
||||
```
|
||||
|
||||
Puis ajouter dans ce fichier le texte suivent :
|
||||
|
||||
```bash
|
||||
{
|
||||
"kdbx": ["x-application/kdbx"]
|
||||
}
|
||||
```
|
||||
|
||||
Enregistrer le fichier (**CTRL** + **o**) et quitter nano (**CTRL** + **c**).
|
||||
|
||||
A présent, le problème est corrigé.
|
||||
|
||||
## Liens utiles <a name="liensutiles"></a>
|
|
@ -1,3 +1,21 @@
|
|||
# PeerTube
|
||||
#<img src="/images/peertube_logo.png" alt="Logo de PeerTube"> PeerTube
|
||||
|
||||
PeerTube est une plateforme de streaming vidéo fédérée (ActivityPub) utilisant P2P (BitTorrent) directement dans le navigateur web, en utilisant WebTorrent.
|
||||
**Index**
|
||||
- [Découverte de l'environnement de PeerTube](#EnvironnementPeerTube)
|
||||
- [Quelques liens utiles](#liensutiles)
|
||||
[](https://install-app.yunohost.org/?app=peertube)
|
||||
|
||||
PeerTube est une plateforme de streaming vidéo fédérée (ActivityPub) utilisant P2P (BitTorrent) directement dans le navigateur web, en utilisant WebTorrent.
|
||||
|
||||
|
||||
## Découverte de l'environnement de PeerTube <a name ="EnvironnementPeerTube"></a>
|
||||
|
||||
Pour comprendre en quoi PeerTube propose une alternative à youtube, vous êtes invité à regarder le clip réalisé par l'association Framasoft (ci-dessous). Elle est elle même hébergé sur [framatube.org](https://framatube.org)
|
||||
|
||||
<iframe width="560" height="315" sandbox="allow-same-origin allow-scripts" src="https://framatube.org/videos/embed/9db9f3f1-9b54-44ed-9e91-461d262d2205" frameborder="0" allowfullscreen></iframe>
|
||||
|
||||
## Quelques liens utiles <a name="liensutiles"></a>
|
||||
|
||||
- Site officiel de PeerTube - [joinpeertube.org](https://joinpeertube.org/fr/)
|
||||
- Dépot application PeerTube Yunohost - [github.com/YunoHost-Apps/peertube_ynh](https://github.com/YunoHost-Apps/peertube_ynh)
|
||||
- Trouver de l'aide et poser toutes vos questions : [forum.yunohost.org](https://forum.yunohost.org/c/support)
|
||||
|
|
|
@ -1,14 +1,12 @@
|
|||
# <img src="/images/pleroma_logo.png" alt="logo de Pleroma"> Pleroma
|
||||
|
||||
| Index |
|
||||
|-------|
|
||||
| [Découverte de l'interface de Pleroma](#decouvertegeneralepleroma) |
|
||||
| [Logiciels Clients pour mobile et ordinateur](#LogicielsClients) |
|
||||
| [Liens utiles](#liensutiles) |
|
||||
- [Découverte de l'interface de Pleroma](#decouvertegeneralepleroma) |
|
||||
- [Logiciels Clients pour mobile et ordinateur](#LogicielsClients) |
|
||||
- [Liens utiles](#liensutiles) |
|
||||
|
||||
Pleroma est un réseau social décentralisé de micro-blogging qui propose une alternative à Twitter, le protocole Activy Pub qu'il utilise permet d'interagir avec le fediverse composé notamment de Mastodon, GNU Social, et d'autres. Il a l'avantage d'être plus léger que mastodon et se prête donc plus facilement à l'auto-hébergement.
|
||||
|
||||
## <a name="#decouvertegeneralepleroma">Découverte de l'interface de Pleroma
|
||||
## <a name="#decouvertegeneralepleroma">Découverte de l'interface de Pleroma</a>
|
||||
Pour ceux et celles qui n'ont pas ou peu l'habitude des réseaux sociaux, voici en détail l'utilisation de chacune des fenêtres proposées.
|
||||
|
||||
### Accueil de l'interface
|
||||
|
@ -36,7 +34,7 @@ Cet espace permet de choisir l'agencement de Pleroma, il est proposé deux agenc
|
|||
6. Notifications
|
||||
On retrouve dans cette zone les messages où vous avez été cité, mais aussi les abonnements à votre compte.
|
||||
|
||||
## <a name="LogicielsClients"> Applications clients
|
||||
## <a name="LogicielsClients"> Applications clients</a>
|
||||
|
||||
| Nom de l'applications | Plateforme | Multi-comptes | Autre réseaux supportés | Play Store | F-Droid | Apple Store |
|
||||
|---|---|---|---|---|---|---|
|
||||
|
|
9
app_sogo_fr.md
Normal file
9
app_sogo_fr.md
Normal file
|
@ -0,0 +1,9 @@
|
|||
#  SOGo
|
||||
|
||||
- [Liens Utiles](#LiensUtiles)
|
||||
SOGo est un service de webmail pour votre serveur email, c'est une alternative à [RoundCube](app_roundcube). Il permet aussi la gestion des agendas et contacts présents sur le serveur.
|
||||
|
||||
## <a name="LiensUtiles">Quelques liens utiles</a>
|
||||
+ Site officiel de SOGo : [sogo.nu](https://sogo.nu/a)
|
||||
+ Dépot de l'application pour Yunohost : [github.com/YunoHost-Apps/sogo_ynh](https://github.com/YunoHost-Apps/sogo_ynh)
|
||||
+ Trouver de l'aide et poser vos questions sur le [forum de Yunohost](https://forum.yunohost.org/c/support/apps)
|
2
faq.md
2
faq.md
|
@ -95,7 +95,7 @@ and having some free time. Other than that, just doing what you can is already a
|
|||
|
||||
#### What's YunoHost's political model?
|
||||
|
||||
It is described in [this document](https://github.com/YunoHost/project-organization/blob/master/yunohost_project_organization.md) :).
|
||||
It is described in [this document](yunohost_project_organization.md) :).
|
||||
|
||||
|
||||
#### Will you port YunoHost to [insert favorite distro] ?
|
||||
|
|
|
@ -72,7 +72,7 @@ Es ist ein weit verbreitetes Missverständnis, dass Neulinge bei offenen Softwar
|
|||
|
||||
#### Was sind YunoHost organisatorische Grundsätze ?
|
||||
|
||||
Das beschreiben wir in [diesem Dokument](https://github.com/YunoHost/project-organization/blob/master/yunohost_project_organization.md) :).
|
||||
Das beschreiben wir in [diesem Dokument](yunohost_project_organization) :).
|
||||
|
||||
|
||||
#### Werdet ihr YunoHosts für [Lieblingsdistribution hier einfügen] portieren ?
|
||||
|
|
|
@ -88,7 +88,7 @@ pouvez, c’est déjà trop cool !
|
|||
|
||||
#### Quel est le modèle politique de YunoHost ?
|
||||
|
||||
Il est décrit dans [ce document](https://github.com/YunoHost/project-organization/blob/master/yunohost_project_organization.md) :).
|
||||
Il est décrit dans [ce document](yunohost_project_organization) :).
|
||||
|
||||
|
||||
|
||||
|
@ -111,7 +111,7 @@ Réponse courte : ce n’est pas ce que nous faisons.
|
|||
|
||||
Réponse moyenne : Par le passé, les apps étaient gérées via des .deb. C’était cauchemardesque. Nous sommes heureux maintenant ;).
|
||||
|
||||
<a data-toggle="collapse" data-target="#whyareyoureinventingpackaging" href="#">Long answer</a>
|
||||
<a data-toggle="collapse" data-target="#whyareyoureinventingpackaging" href="#">Longue réponse</a>
|
||||
<div id="whyareyoureinventingpackaging" class="collapse">
|
||||
|
||||
<p>YunoHost cherche à garder un système de packaging simple. L’idée depuis le départ était que « si tu sais installer l’app à la main, alors tu peux facilement créer un package basique en copiant-collant les étapes, sans besoin de connaissances particulière ». Ce n’est pas le cas des paquets Debian.</p>
|
||||
|
|
BIN
images/nextcloud_logo.png
Normal file
BIN
images/nextcloud_logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.9 KiB |
BIN
images/peertube_embed_01.png
Normal file
BIN
images/peertube_embed_01.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 30 KiB |
BIN
images/peertube_logo.png
Normal file
BIN
images/peertube_logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.6 KiB |
Binary file not shown.
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.6 KiB |
BIN
images/sogo_logo.png
Normal file
BIN
images/sogo_logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.3 KiB |
Loading…
Add table
Reference in a new issue