Note to first-time contributors: Please open a discussion post in Discussions and describe your changes before submitting a pull request.
Before submitting, make sure you've checked the following:
Target branch: Please verify that the pull request targets the dev branch.
Description: Provide a concise description of the changes made in this pull request.
Changelog: Ensure a changelog entry following the format of Keep a Changelog is added at the bottom of the PR description.
Documentation: Have you updated relevant documentation Open WebUI Docs, or other documentation sources?
Dependencies: Are there any new dependencies? Have you updated the dependency versions in the documentation?
Testing: Have you written and run sufficient tests to validate the changes?
Code review: Have you performed a self-review of your code, addressing any coding standard issues and ensuring adherence to the project's coding standards?
Prefix: To clearly categorize this pull request, prefix the pull request title using one of the following:
BREAKING CHANGE: Significant changes that may affect compatibility
build: Changes that affect the build system or external dependencies
ci: Changes to our continuous integration processes or workflows
chore: Refactor, cleanup, or other non-functional code changes
docs: Documentation update or addition
feat: Introduces a new feature or enhancement to the codebase
fix: Bug fix or error correction
i18n: Internationalization or localization changes
perf: Performance improvement
refactor: Code restructuring for better maintainability, readability, or scalability
style: Changes that do not affect the meaning of the code (white space, formatting, missing semi-colons, etc.)
test: Adding missing tests or correcting existing tests
WIP: Work in progress, a temporary label for incomplete or ongoing work
Changelog Entry
Description
[Concisely describe the changes made in this pull request, including any relevant motivation and impact (e.g., fixing a bug, adding a feature, or improving performance)]
Added
[List any new features, functionalities, or additions]
Changed
[List any changes, updates, refactorings, or optimizations]
Deprecated
[List any deprecated functionality or features that have been removed]
Removed
[List any removed features, files, or functionalities]
Fixed
[List any fixes, corrections, or bug fixes]
Security
[List any new or updated security-related changes, including vulnerability fixes]
Breaking Changes
BREAKING CHANGE: [List any breaking changes affecting compatibility or functionality]
Additional Information
[Insert any additional context, notes, or explanations for the changes]
[Reference any related issues, commits, or other relevant information]
Screenshots or Videos
[Attach any relevant screenshots or videos demonstrating the changes]
Contributor License Agreement
By submitting this pull request, I confirm that I have read and fully agree to the Contributor License Agreement (CLA), and I am providing my contributions under its terms.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.
## 📋 Pull Request Information
**Original PR:** https://github.com/open-webui/open-webui/pull/17932
**Author:** [@edmcquinn](https://github.com/edmcquinn)
**Created:** 9/30/2025
**Status:** ❌ Closed
**Base:** `main` ← **Head:** `main`
---
### 📝 Commits (10+)
- [`26154b3`](https://github.com/open-webui/open-webui/commit/26154b3165c3aaa5ca72de8821dca6a82dc01547) Favi + Searxng support
- [`fa4d5c3`](https://github.com/open-webui/open-webui/commit/fa4d5c3036422f798cfeb1a52d8a6223442e4107) Fix Favicon
- [`c10b52d`](https://github.com/open-webui/open-webui/commit/c10b52d246a16038f10886b9fa741634afecfe11) Merge branch 'open-webui:main' into main
- [`90701cd`](https://github.com/open-webui/open-webui/commit/90701cd944fa31f341bb621d7740f7ef5925f306) Fixing Html
- [`c1c770e`](https://github.com/open-webui/open-webui/commit/c1c770eda00a5e43e694a67f81ec19ddd5f62a11) Merge branch 'main' of https://github.com/predictionguard/Chat-Interface
- [`13ceb62`](https://github.com/open-webui/open-webui/commit/13ceb62eab48357c51baff089ade545a175ea2b6) Favicon Changes
- [`a0d7be0`](https://github.com/open-webui/open-webui/commit/a0d7be0bb08c7c63ff0cd2489558a0fe66e88fb1) Merge branch 'open-webui:main' into main
- [`f054e08`](https://github.com/open-webui/open-webui/commit/f054e08c41472ca202219a01b7f76f0370e8eca2) Merge branch 'open-webui:main' into imb
- [`ec2169b`](https://github.com/open-webui/open-webui/commit/ec2169b5ad2dfa67c3004b674fcaae5c2b1ecad6) Prompt and docs default private
- [`ba0953a`](https://github.com/open-webui/open-webui/commit/ba0953a819c0b13088c5183de89d310d6fc2c216) Merge pull request #1 from predictionguard/private-access
### 📊 Changes
**30 files changed** (+2703 additions, -41 deletions)
<details>
<summary>View changed files</summary>
📝 `Dockerfile` (+1 -0)
📝 `backend/open_webui/env.py` (+3 -4)
📝 `backend/open_webui/static/apple-touch-icon.png` (+0 -0)
📝 `backend/open_webui/static/favicon-96x96.png` (+0 -0)
📝 `backend/open_webui/static/favicon-dark.png` (+0 -0)
📝 `backend/open_webui/static/favicon.ico` (+0 -0)
📝 `backend/open_webui/static/favicon.png` (+0 -0)
📝 `backend/open_webui/static/favicon.svg` (+1 -3)
📝 `backend/open_webui/static/logo.png` (+0 -0)
📝 `backend/open_webui/static/splash-dark.png` (+0 -0)
📝 `backend/open_webui/static/splash.png` (+0 -0)
📝 `backend/open_webui/static/web-app-manifest-192x192.png` (+0 -0)
📝 `backend/open_webui/static/web-app-manifest-512x512.png` (+0 -0)
📝 `docker-compose.yaml` (+39 -11)
➕ `searxng/settings.yml` (+2574 -0)
➕ `searxng/uwsgi.ini` (+54 -0)
📝 `src/app.html` (+8 -8)
📝 `src/lib/components/workspace/Prompts/PromptEditor.svelte` (+17 -7)
📝 `src/lib/components/workspace/common/AccessControl.svelte` (+1 -1)
📝 `src/routes/auth/+page.svelte` (+2 -2)
_...and 10 more files_
</details>
### 📄 Description
# Pull Request Checklist
### Note to first-time contributors: Please open a discussion post in [Discussions](https://github.com/open-webui/open-webui/discussions) and describe your changes before submitting a pull request.
**Before submitting, make sure you've checked the following:**
- [ ] **Target branch:** Please verify that the pull request targets the `dev` branch.
- [ ] **Description:** Provide a concise description of the changes made in this pull request.
- [ ] **Changelog:** Ensure a changelog entry following the format of [Keep a Changelog](https://keepachangelog.com/) is added at the bottom of the PR description.
- [ ] **Documentation:** Have you updated relevant documentation [Open WebUI Docs](https://github.com/open-webui/docs), or other documentation sources?
- [ ] **Dependencies:** Are there any new dependencies? Have you updated the dependency versions in the documentation?
- [ ] **Testing:** Have you written and run sufficient tests to validate the changes?
- [ ] **Code review:** Have you performed a self-review of your code, addressing any coding standard issues and ensuring adherence to the project's coding standards?
- [ ] **Prefix:** To clearly categorize this pull request, prefix the pull request title using one of the following:
- **BREAKING CHANGE**: Significant changes that may affect compatibility
- **build**: Changes that affect the build system or external dependencies
- **ci**: Changes to our continuous integration processes or workflows
- **chore**: Refactor, cleanup, or other non-functional code changes
- **docs**: Documentation update or addition
- **feat**: Introduces a new feature or enhancement to the codebase
- **fix**: Bug fix or error correction
- **i18n**: Internationalization or localization changes
- **perf**: Performance improvement
- **refactor**: Code restructuring for better maintainability, readability, or scalability
- **style**: Changes that do not affect the meaning of the code (white space, formatting, missing semi-colons, etc.)
- **test**: Adding missing tests or correcting existing tests
- **WIP**: Work in progress, a temporary label for incomplete or ongoing work
# Changelog Entry
### Description
- [Concisely describe the changes made in this pull request, including any relevant motivation and impact (e.g., fixing a bug, adding a feature, or improving performance)]
### Added
- [List any new features, functionalities, or additions]
### Changed
- [List any changes, updates, refactorings, or optimizations]
### Deprecated
- [List any deprecated functionality or features that have been removed]
### Removed
- [List any removed features, files, or functionalities]
### Fixed
- [List any fixes, corrections, or bug fixes]
### Security
- [List any new or updated security-related changes, including vulnerability fixes]
### Breaking Changes
- **BREAKING CHANGE**: [List any breaking changes affecting compatibility or functionality]
---
### Additional Information
- [Insert any additional context, notes, or explanations for the changes]
- [Reference any related issues, commits, or other relevant information]
### Screenshots or Videos
- [Attach any relevant screenshots or videos demonstrating the changes]
### Contributor License Agreement
By submitting this pull request, I confirm that I have read and fully agree to the [Contributor License Agreement (CLA)](https://github.com/open-webui/open-webui/blob/main/CONTRIBUTOR_LICENSE_AGREEMENT), and I am providing my contributions under its terms.
---
<sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
📋 Pull Request Information
Original PR: https://github.com/open-webui/open-webui/pull/17932
Author: @edmcquinn
Created: 9/30/2025
Status: ❌ Closed
Base:
main← Head:main📝 Commits (10+)
26154b3Favi + Searxng supportfa4d5c3Fix Faviconc10b52dMerge branch 'open-webui:main' into main90701cdFixing Htmlc1c770eMerge branch 'main' of https://github.com/predictionguard/Chat-Interface13ceb62Favicon Changesa0d7be0Merge branch 'open-webui:main' into mainf054e08Merge branch 'open-webui:main' into imbec2169bPrompt and docs default privateba0953aMerge pull request #1 from predictionguard/private-access📊 Changes
30 files changed (+2703 additions, -41 deletions)
View changed files
📝
Dockerfile(+1 -0)📝
backend/open_webui/env.py(+3 -4)📝
backend/open_webui/static/apple-touch-icon.png(+0 -0)📝
backend/open_webui/static/favicon-96x96.png(+0 -0)📝
backend/open_webui/static/favicon-dark.png(+0 -0)📝
backend/open_webui/static/favicon.ico(+0 -0)📝
backend/open_webui/static/favicon.png(+0 -0)📝
backend/open_webui/static/favicon.svg(+1 -3)📝
backend/open_webui/static/logo.png(+0 -0)📝
backend/open_webui/static/splash-dark.png(+0 -0)📝
backend/open_webui/static/splash.png(+0 -0)📝
backend/open_webui/static/web-app-manifest-192x192.png(+0 -0)📝
backend/open_webui/static/web-app-manifest-512x512.png(+0 -0)📝
docker-compose.yaml(+39 -11)➕
searxng/settings.yml(+2574 -0)➕
searxng/uwsgi.ini(+54 -0)📝
src/app.html(+8 -8)📝
src/lib/components/workspace/Prompts/PromptEditor.svelte(+17 -7)📝
src/lib/components/workspace/common/AccessControl.svelte(+1 -1)📝
src/routes/auth/+page.svelte(+2 -2)...and 10 more files
📄 Description
Pull Request Checklist
Note to first-time contributors: Please open a discussion post in Discussions and describe your changes before submitting a pull request.
Before submitting, make sure you've checked the following:
devbranch.Changelog Entry
Description
Added
Changed
Deprecated
Removed
Fixed
Security
Breaking Changes
Additional Information
Screenshots or Videos
Contributor License Agreement
By submitting this pull request, I confirm that I have read and fully agree to the Contributor License Agreement (CLA), and I am providing my contributions under its terms.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.