diff options
author | John Olheiser <john.olheiser@gmail.com> | 2023-07-25 21:00:14 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-26 10:00:14 +0800 |
commit | 4033d95dbf1eb525130a0701bfc58c0844220f7c (patch) | |
tree | 1a710272b1a3157fa3d26246ef2a7bd752d09571 /docs/content/doc/installation/windows-service.fr-fr.md | |
parent | 43213b816d4cc4de9dd46a7b667925516e305443 (diff) | |
download | gitea-4033d95dbf1eb525130a0701bfc58c0844220f7c.tar.gz gitea-4033d95dbf1eb525130a0701bfc58c0844220f7c.zip |
Docusaurus-ify 1.20 (#26052)
See https://github.com/go-gitea/gitea/pull/26051
---------
Signed-off-by: jolheiser <john.olheiser@gmail.com>
Co-authored-by: JonRB <4564448+eeyrjmr@users.noreply.github.com>
Diffstat (limited to 'docs/content/doc/installation/windows-service.fr-fr.md')
-rw-r--r-- | docs/content/doc/installation/windows-service.fr-fr.md | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/docs/content/doc/installation/windows-service.fr-fr.md b/docs/content/doc/installation/windows-service.fr-fr.md deleted file mode 100644 index c4e00b04e1..0000000000 --- a/docs/content/doc/installation/windows-service.fr-fr.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -date: "2017-08-23T09:00:00+02:00" -title: "Démarrer en tant que service Windows" -slug: "windows-service" -weight: 50 -toc: false -draft: false -aliases: - - /fr-fr/windows-service -menu: - sidebar: - parent: "installation" - name: "Service Windows" - weight: 50 - identifier: "windows-service" ---- - -# Activer un service Windows - -Pour activer le service Windows Gitea, ouvrez une `cmd` en tant qu'Administrateur puis utilisez la commande suivante : - -``` -sc create gitea start= auto binPath= "\"C:\gitea\gitea.exe\" web --config \"C:\gitea\custom\conf\app.ini\"" -``` - -N'oubliez pas de remplacer `C:\gitea` par le chemin que vous avez utilisé pour votre installation. - -Ensuite, ouvrez "Services Windows", puis recherchez le service `gitea`, faites un clic droit et selectionnez "Run". Si tout fonctionne, vous devriez être capable d'accèder à Gitea à l'URL `http://localhost:3000` (ou sur le port configuré si différent de 3000). - -## Désactiver un service Windows - -Pour désactiver le service Windows Gitea, ouvrez une `cmd` en tant qu'Administrateur puis utilisez la commande suivante : - -``` -sc delete gitea -``` |