summaryrefslogtreecommitdiffstats
path: root/docs/content/doc/installation/windows-service.fr-fr.md
diff options
context:
space:
mode:
authortechknowlogick <techknowlogick@users.noreply.github.com>2017-11-30 07:45:48 -0500
committerLunny Xiao <xiaolunwen@gmail.com>2017-11-30 20:45:48 +0800
commit474dfcc798b4d2d1a0d83f5cf69c6e129fc3a5c5 (patch)
tree0928c135f555b960afaad5a58a1f63a3c60703a2 /docs/content/doc/installation/windows-service.fr-fr.md
parentd517b56682483466c2824052b70d2ea8a12ac223 (diff)
downloadgitea-474dfcc798b4d2d1a0d83f5cf69c6e129fc3a5c5.tar.gz
gitea-474dfcc798b4d2d1a0d83f5cf69c6e129fc3a5c5.zip
French translation for docs (#3030)
original PR go-gitea/docs#147 and author @0xbaadf00d
Diffstat (limited to 'docs/content/doc/installation/windows-service.fr-fr.md')
-rwxr-xr-xdocs/content/doc/installation/windows-service.fr-fr.md34
1 files changed, 34 insertions, 0 deletions
diff --git a/docs/content/doc/installation/windows-service.fr-fr.md b/docs/content/doc/installation/windows-service.fr-fr.md
new file mode 100755
index 0000000000..66cc5fc6dd
--- /dev/null
+++ b/docs/content/doc/installation/windows-service.fr-fr.md
@@ -0,0 +1,34 @@
+---
+date: "2017-08-23T09:00:00+02:00"
+title: "Démarrer en tant que service Windows"
+slug: "windows-service"
+weight: 10
+toc: true
+draft: false
+menu:
+ sidebar:
+ parent: "installation"
+ name: "Service Windows"
+ weight: 30
+ 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 utilisez pour votre installation.
+
+Ensuite, ouvrez "Services Windows", puis recherchez le service `gitea`, faites un clique 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
+```