mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-24 04:10:15 +01:00
docs: Improved ngrok installation and enhanced user_auth_system.md (#721)
* Update ngrok.md * Update user_auth_system.md * Update user_auth_system.md * Update user_auth_system.md
This commit is contained in:
parent
745eef2eb0
commit
ae51e6153f
2 changed files with 46 additions and 24 deletions
|
|
@ -6,24 +6,46 @@ To use Ngrok for tunneling your local server to the internet, follow these steps
|
|||
|
||||
1. Go to https://ngrok.com/ and sign up for an account.
|
||||
|
||||
## Docker Installation
|
||||
## Docker Installation 🐳
|
||||
|
||||
1. Copy your auth token from https://dashboard.ngrok.com/get-started/your-authtoken.
|
||||
2. Open a terminal and run the following command: `docker run -d -it -e NGROK_AUTHTOKEN=<your token> ngrok/ngrok http 80`
|
||||
|
||||
## Windows Installation
|
||||
## Windows Installation 💙
|
||||
|
||||
1. Download the ZIP file from https://ngrok.com/download.
|
||||
2. Extract the contents of the ZIP file using 7zip or WinRar.
|
||||
3. Run `ngrok.exe`.
|
||||
4. Copy your auth token from https://dashboard.ngrok.com/get-started/your-authtoken.
|
||||
5. In the `ngrok.exe` terminal, run the following command: `ngrok config add-authtoken <your token>`
|
||||
6. If you haven't done so already, start LibreChat normally.
|
||||
7. In the `ngrok.exe` terminal, run the following command: ngrok http 3080
|
||||
3.
|
||||
4. Run `ngrok.exe`.
|
||||
5. Copy your auth token from https://dashboard.ngrok.com/get-started/your-authtoken.
|
||||
6. In the `ngrok.exe` terminal, run the following command: `ngrok config add-authtoken <your token>`
|
||||
7. If you haven't done so already, start LibreChat normally.
|
||||
8. In the `ngrok.exe` terminal, run the following command: `ngrok http 3080`
|
||||
|
||||
You will see a link that can be used to access LibreChat.
|
||||

|
||||
|
||||
## Linux Installation 🐧
|
||||
|
||||
1. Copy the command from https://ngrok.com/download choosing the **correct** architecture.
|
||||
2. Run the command in the terminal
|
||||
3. Copy your auth token from https://dashboard.ngrok.com/get-started/your-authtoken.
|
||||
4. run the following command: `ngrok config add-authtoken <your token>`
|
||||
5. If you haven't done so already, start LibreChat normally.
|
||||
6. run the following command: `ngrok http 3080`
|
||||
|
||||
## Mac Installation 🍎
|
||||
|
||||
1. Download the ZIP file from https://ngrok.com/download.
|
||||
2. Extract the contents of the ZIP file using a suitable Mac application like Unarchiver.
|
||||
3. Open Terminal.
|
||||
4. Navigate to the directory where you extracted ngrok using the `cd` command.
|
||||
5. Run ngrok by typing `./ngrok`.
|
||||
6. Copy your auth token from https://dashboard.ngrok.com/get-started/your-authtoken.
|
||||
7. In the terminal where you ran ngrok, enter the following command: `ngrok authtoken <your token>`
|
||||
8. If you haven't done so already, start LibreChat normally.
|
||||
9. In the terminal where you ran ngrok, enter the following command: `./ngrok http 3080`
|
||||
|
||||
---
|
||||
|
||||
### Note:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue