From 48d7f9bca5bc16f4cd691a33b38244cacbf83224 Mon Sep 17 00:00:00 2001 From: Erreur32 Date: Wed, 10 Jul 2024 22:44:33 +0200 Subject: [PATCH] Update README.md --- README.md | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7e268ca..976b3db 100644 --- a/README.md +++ b/README.md @@ -17,23 +17,22 @@ Ce script permet de gérer Nginx Proxy Manager via l'API. Il fournit des fonctio - `curl` - `jq` -## Installation jq - ```bash -sudo apt-get install jq +sudo apt-get install jq curl ``` -## settings: +## Installation +``` +wget https://raw.githubusercontent.com/Erreur32/nginx-proxy-manager-API/main/nginx_proxy_manager_cli.sh +``` -only edit thoses variables +## Settings: +Only edit these 3 variables: ``` -#### Variables to edit - -# Address IP server Nginx (your nginx ip server) +## IP address of the Nginx server (your Nginx server IP) NGINX_IP="127.0.0.1" - -# Existing user (user pass) on npm. +## Existing user (user and password) on NPM API_USER="existingUser@mail.com" API_PASS="password" ```