docs/docs/tutorials/https-nginx.md

1.8 KiB

sidebar_position title
200 🔒 HTTPS using Nginx

:::warning This tutorial is a community contribution and is not supported by the Open WebUI team. It serves only as a demonstration on how to customize Open WebUI for your specific use case. Want to contribute? Check out the contributing tutorial. :::

HTTPS using Nginx

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 three methods to set up HTTPS:

  • 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';

Next Steps

After setting up HTTPS, access Open WebUI securely at:

Ensure that your DNS records are correctly configured if you're using a domain name. For production environments, it's recommended to use Let's Encrypt for trusted SSL certificates.