fix some links

This commit is contained in:
DrMelone
2025-12-20 21:24:44 +01:00
parent 720b1aec38
commit 1578d308c8
4 changed files with 10 additions and 10 deletions

View File

@@ -289,7 +289,7 @@ If you find that **icons or other static assets are failing to load**, it is oft
**Solution:**
You need to configure the `CORS_ALLOW_ORIGIN` environment variable in your backend.
- Check the [Environment Configuration](../getting-started/env-configuration.mdx#cors-settings) guide for details on how to set `CORS_ALLOW_ORIGIN` to allow requests from your frontend's URL (e.g., `http://localhost:5173`).
- Check the [Environment Configuration](../env-configuration.mdx#cors-settings) guide for details on how to set `CORS_ALLOW_ORIGIN` to allow requests from your frontend's URL (e.g., `http://localhost:5173`).
- In a development environment, you can often set this in your `backend/dev.sh` script or your `.env` file.
## Contributing to Open WebUI

View File

@@ -28,9 +28,9 @@ The best method depends on your infrastructure.
### 🏠 For Local/Docker Users
If you are running Open WebUI with Docker, the standard approach is to use a **Reverse Proxy**. This sits in front of Open WebUI and handles the SSL encryption.
* **[Nginx](../../../tutorials/https/nginx.md)**: The industry standard. Highly configurable, great performance.
* **[Caddy](../../../tutorials/https/caddy.md)**: **Easiest option**. Automatically obtains and renews Let's Encrypt certificates with minimal config.
* **[HAProxy](../../../tutorials/https/haproxy.md)**: Robust choice for advanced load balancing needs.
* **[Nginx](../../tutorials/https/nginx.md)**: The industry standard. Highly configurable, great performance.
* **[Caddy](../../tutorials/https/caddy.md)**: **Easiest option**. Automatically obtains and renews Let's Encrypt certificates with minimal config.
* **[HAProxy](../../tutorials/https/haproxy.md)**: Robust choice for advanced load balancing needs.
### ☁️ For Cloud Deployments
* **Cloud Load Balancers**: (AWS ALB, Google Cloud Load Balancing) often handle SSL termination natively.

View File

@@ -102,11 +102,11 @@ Some functions need credentials (like Anthropics API key):
Ready to build your own? Check out our detailed development guides:
* **[Functions Overview](../../../features/plugin/functions/index.mdx)**: Learn the basics of the Functions system.
* **[Pipes Guide](../../../features/plugin/functions/pipe.mdx)**: Create custom model providers and logic pipelines.
* **[Filters Guide](../../../features/plugin/functions/filter.mdx)**: Intercept and modify messages (Input/Output guards).
* **[Actions Guide](../../../features/plugin/functions/action.mdx)**: Add buttons/actions to messages.
* **[Tools Guide](../../../features/plugin/tools/index.mdx)**: Build tools for LLMs to use (RAG, APIs).
* **[Functions Overview](../../features/plugin/functions/index.mdx)**: Learn the basics of the Functions system.
* **[Pipes Guide](../../features/plugin/functions/pipe.mdx)**: Create custom model providers and logic pipelines.
* **[Filters Guide](../../features/plugin/functions/filter.mdx)**: Intercept and modify messages (Input/Output guards).
* **[Actions Guide](../../features/plugin/functions/action.mdx)**: Add buttons/actions to messages.
* **[Tools Guide](../../features/plugin/tools/index.mdx)**: Build tools for LLMs to use (RAG, APIs).
* **[Community Registry](https://openwebui.com/search)**: Browse hundreds of community-made functions.