mirror of
https://github.com/open-webui/docs.git
synced 2026-01-02 17:59:41 +07:00
add windows instructions for nginx/LAN support
This commit is contained in:
@@ -11,25 +11,35 @@ This tutorial is a community contribution and is not supported by the Open WebUI
|
||||
|
||||
Ensuring secure communication between your users and the Open WebUI is paramount. HTTPS (HyperText Transfer Protocol Secure) encrypts the data transmitted, protecting it from eavesdroppers and tampering. By configuring Nginx as a reverse proxy, you can seamlessly add HTTPS to your Open WebUI deployment, enhancing both security and trustworthiness.
|
||||
|
||||
This guide provides two methods to set up HTTPS:
|
||||
This guide provides three methods to set up HTTPS:
|
||||
|
||||
- **Self-Signed Certificates**: Ideal for development and internal use.
|
||||
- **Let's Encrypt**: Perfect for production environments requiring trusted SSL certificates.
|
||||
- **Self-Signed Certificates**: Ideal for development and internal use, using docker.
|
||||
- **Let's Encrypt**: Perfect for production environments requiring trusted SSL certificates, using docker.
|
||||
- **Windows+Self-Signed**: Simplified instructions for development and internal use on windows, no docker required.
|
||||
|
||||
Choose the method that best fits your deployment needs.
|
||||
|
||||
|
||||
import Tabs from '@theme/Tabs';
|
||||
import TabItem from '@theme/TabItem';
|
||||
|
||||
import SelfSigned from './tab-nginx/SelfSigned.md';
|
||||
import LetsEncrypt from './tab-nginx/LetsEncrypt.md';
|
||||
import Windows from './tab-nginx/Windows.md';
|
||||
|
||||
<Tabs>
|
||||
<TabItem value="letsencrypt" label="Let's Encrypt">
|
||||
<LetsEncrypt />
|
||||
</TabItem>
|
||||
<TabItem value="selfsigned" label="Self-Signed">
|
||||
<SelfSigned />
|
||||
</TabItem>
|
||||
<TabItem value="windows" label="Windows">
|
||||
<Windows />
|
||||
</TabItem>
|
||||
</Tabs>
|
||||
|
||||
|
||||
## Next Steps
|
||||
|
||||
After setting up HTTPS, access Open WebUI securely at:
|
||||
|
||||
Reference in New Issue
Block a user