diff --git a/backend/open_webui/conda b/backend/open_webui/conda
new file mode 100644
index 000000000..4791f2c70
--- /dev/null
+++ b/backend/open_webui/conda
@@ -0,0 +1,2 @@
+
+L:\CeylonAlly\open-webui\backend\open_webui>conda.bat activate open-webui
diff --git a/backend/open_webui/main.py b/backend/open_webui/main.py
index 416460837..f87ccce37 100644
--- a/backend/open_webui/main.py
+++ b/backend/open_webui/main.py
@@ -1370,8 +1370,19 @@ async def healthcheck_with_db():
return {"status": True}
-app.mount("/static", StaticFiles(directory=STATIC_DIR), name="static")
-app.mount("/cache", StaticFiles(directory=CACHE_DIR), name="cache")
+class CORSStaticFiles(StaticFiles):
+ async def get_response(self, path: str, scope):
+ response = await super().get_response(path, scope)
+ if isinstance(response, FileResponse):
+ origin = scope.get('headers', {}).get((b'origin', None))
+ if origin:
+ response.headers["Access-Control-Allow-Origin"] = origin.decode()
+ response.headers["Access-Control-Allow-Methods"] = "GET, HEAD, OPTIONS"
+ response.headers["Access-Control-Allow-Headers"] = "*"
+ return response
+
+app.mount("/static", CORSStaticFiles(directory=STATIC_DIR), name="static")
+app.mount("/cache", CORSStaticFiles(directory=CACHE_DIR), name="cache")
def swagger_ui_html(*args, **kwargs):
diff --git a/backend/open_webui/static/apple-touch-icon.png b/backend/open_webui/static/apple-touch-icon.png
index ece4b85db..3b119a33a 100644
Binary files a/backend/open_webui/static/apple-touch-icon.png and b/backend/open_webui/static/apple-touch-icon.png differ
diff --git a/backend/open_webui/static/favicon-96x96.png b/backend/open_webui/static/favicon-96x96.png
index 2ebdffebe..158dd2ae2 100644
Binary files a/backend/open_webui/static/favicon-96x96.png and b/backend/open_webui/static/favicon-96x96.png differ
diff --git a/backend/open_webui/static/favicon-dark.png b/backend/open_webui/static/favicon-dark.png
deleted file mode 100644
index 08627a23f..000000000
Binary files a/backend/open_webui/static/favicon-dark.png and /dev/null differ
diff --git a/backend/open_webui/static/favicon.ico b/backend/open_webui/static/favicon.ico
index 14c5f9c6d..edb9afe68 100644
Binary files a/backend/open_webui/static/favicon.ico and b/backend/open_webui/static/favicon.ico differ
diff --git a/backend/open_webui/static/favicon.png b/backend/open_webui/static/favicon.png
index 63735ad46..158dd2ae2 100644
Binary files a/backend/open_webui/static/favicon.png and b/backend/open_webui/static/favicon.png differ
diff --git a/backend/open_webui/static/favicon.svg b/backend/open_webui/static/favicon.svg
index 0aa909745..63f725e4a 100644
--- a/backend/open_webui/static/favicon.svg
+++ b/backend/open_webui/static/favicon.svg
@@ -1,3 +1,3 @@
-
\ No newline at end of file
diff --git a/backend/open_webui/static/logo.png b/backend/open_webui/static/logo.png
index a652a5fb8..158dd2ae2 100644
Binary files a/backend/open_webui/static/logo.png and b/backend/open_webui/static/logo.png differ
diff --git a/backend/open_webui/static/site.webmanifest b/backend/open_webui/static/site.webmanifest
index 95915ae2b..ccf313a3e 100644
--- a/backend/open_webui/static/site.webmanifest
+++ b/backend/open_webui/static/site.webmanifest
@@ -1,15 +1,15 @@
{
- "name": "Open WebUI",
- "short_name": "WebUI",
+ "name": "MyWebSite",
+ "short_name": "MySite",
"icons": [
{
- "src": "/static/web-app-manifest-192x192.png",
+ "src": "/web-app-manifest-192x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
- "src": "/static/web-app-manifest-512x512.png",
+ "src": "/web-app-manifest-512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
diff --git a/backend/open_webui/static/splash-dark.png b/backend/open_webui/static/splash-dark.png
deleted file mode 100644
index 202c03f8e..000000000
Binary files a/backend/open_webui/static/splash-dark.png and /dev/null differ
diff --git a/backend/open_webui/static/splash.png b/backend/open_webui/static/splash.png
deleted file mode 100644
index 389196ca6..000000000
Binary files a/backend/open_webui/static/splash.png and /dev/null differ
diff --git a/backend/open_webui/static/web-app-manifest-192x192.png b/backend/open_webui/static/web-app-manifest-192x192.png
index fbd2eab6e..d6ea07ff3 100644
Binary files a/backend/open_webui/static/web-app-manifest-192x192.png and b/backend/open_webui/static/web-app-manifest-192x192.png differ
diff --git a/backend/open_webui/static/web-app-manifest-512x512.png b/backend/open_webui/static/web-app-manifest-512x512.png
index afebe2cd0..ffda26cb9 100644
Binary files a/backend/open_webui/static/web-app-manifest-512x512.png and b/backend/open_webui/static/web-app-manifest-512x512.png differ
diff --git a/docs/GOOGLE_CLOUD_DEPLOYMENT.md b/docs/GOOGLE_CLOUD_DEPLOYMENT.md
new file mode 100644
index 000000000..dffb39c3e
--- /dev/null
+++ b/docs/GOOGLE_CLOUD_DEPLOYMENT.md
@@ -0,0 +1,101 @@
+# Deploying Open WebUI to Google Cloud
+
+This guide will help you deploy Open WebUI to Google Cloud Platform using Docker and Cloud Run.
+
+## Prerequisites
+
+1. Install [Google Cloud SDK](https://cloud.google.com/sdk/docs/install)
+2. Install [Docker](https://docs.docker.com/get-docker/)
+3. A Google Cloud account with billing enabled
+
+## Setup Google Cloud Project
+
+1. Create a new project or select an existing one:
+```bash
+gcloud projects create [PROJECT_ID] --name="[PROJECT_NAME]"
+gcloud config set project [PROJECT_ID]
+```
+
+2. Enable required APIs:
+```bash
+gcloud services enable cloudbuild.googleapis.com run.googleapis.com artifactregistry.googleapis.com
+```
+
+3. Create a Docker repository in Artifact Registry:
+```bash
+gcloud artifacts repositories create open-webui --repository-format=docker --location=[REGION] --description="Open WebUI Docker repository"
+```
+
+## Build and Push Docker Images
+
+1. Configure Docker authentication:
+```bash
+gcloud auth configure-docker [REGION]-docker.pkg.dev
+```
+
+2. Build and tag the images:
+```bash
+# Build Ollama image
+docker build -t [REGION]-docker.pkg.dev/[PROJECT_ID]/open-webui/ollama:latest .
+
+# Build Open WebUI image
+docker build -t [REGION]-docker.pkg.dev/[PROJECT_ID]/open-webui/open-webui:latest .
+```
+
+3. Push the images to Artifact Registry:
+```bash
+docker push [REGION]-docker.pkg.dev/[PROJECT_ID]/open-webui/ollama:latest
+docker push [REGION]-docker.pkg.dev/[PROJECT_ID]/open-webui/open-webui:latest
+```
+
+## Deploy to Cloud Run
+
+1. Deploy Ollama service:
+```bash
+gcloud run deploy ollama \
+ --image=[REGION]-docker.pkg.dev/[PROJECT_ID]/open-webui/ollama:latest \
+ --region=[REGION] \
+ --platform=managed \
+ --port=11434 \
+ --memory=4Gi \
+ --cpu=2 \
+ --allow-unauthenticated
+```
+
+2. Deploy Open WebUI service:
+```bash
+gcloud run deploy open-webui \
+ --image=[REGION]-docker.pkg.dev/[PROJECT_ID]/open-webui/open-webui:latest \
+ --region=[REGION] \
+ --platform=managed \
+ --port=8080 \
+ --memory=2Gi \
+ --cpu=1 \
+ --set-env-vars="OLLAMA_BASE_URL=[OLLAMA_SERVICE_URL]" \
+ --allow-unauthenticated
+```
+
+Replace `[PROJECT_ID]`, `[REGION]`, and `[OLLAMA_SERVICE_URL]` with your specific values.
+
+## Access Your Deployment
+
+After deployment, you can access your Open WebUI instance at the URL provided by Cloud Run. You can find this URL in the Google Cloud Console or by running:
+
+```bash
+gcloud run services describe open-webui --region=[REGION] --format='value(status.url)'
+```
+
+## Important Notes
+
+1. Ensure your Cloud Run service account has the necessary permissions.
+2. Consider setting up a custom domain if needed.
+3. Monitor your usage to control costs.
+4. Set up appropriate security measures and environment variables.
+5. Consider using Cloud Run jobs for background tasks if needed.
+
+## Troubleshooting
+
+1. Check service logs in Cloud Console
+2. Verify environment variables are set correctly
+3. Ensure services can communicate with each other
+4. Check resource allocation if experiencing performance issues
\ No newline at end of file
diff --git a/static/favicon.png b/static/favicon.png
index 63735ad46..158dd2ae2 100644
Binary files a/static/favicon.png and b/static/favicon.png differ
diff --git a/static/opensearch.xml b/static/opensearch.xml
index ce47e39ae..45a37b9ea 100644
--- a/static/opensearch.xml
+++ b/static/opensearch.xml
@@ -2,7 +2,7 @@
Open WebUI
Search Open WebUI
UTF-8
-http://localhost:5137/favicon.png
-
-http://localhost:5137
+/static/favicon.png
+
+/
\ No newline at end of file
diff --git a/static/spalash.png b/static/spalash.png
new file mode 100644
index 000000000..d6ea07ff3
Binary files /dev/null and b/static/spalash.png differ
diff --git a/static/static/apple-touch-icon.png b/static/static/apple-touch-icon.png
index ece4b85db..3b119a33a 100644
Binary files a/static/static/apple-touch-icon.png and b/static/static/apple-touch-icon.png differ
diff --git a/static/static/favicon-96x96.png b/static/static/favicon-96x96.png
index 2ebdffebe..158dd2ae2 100644
Binary files a/static/static/favicon-96x96.png and b/static/static/favicon-96x96.png differ
diff --git a/static/static/favicon.ico b/static/static/favicon.ico
index 14c5f9c6d..edb9afe68 100644
Binary files a/static/static/favicon.ico and b/static/static/favicon.ico differ
diff --git a/static/static/favicon.svg b/static/static/favicon.svg
index 0aa909745..63f725e4a 100644
--- a/static/static/favicon.svg
+++ b/static/static/favicon.svg
@@ -1,3 +1,3 @@
-
\ No newline at end of file
diff --git a/static/static/site.webmanifest b/static/static/site.webmanifest
index 95915ae2b..ccf313a3e 100644
--- a/static/static/site.webmanifest
+++ b/static/static/site.webmanifest
@@ -1,15 +1,15 @@
{
- "name": "Open WebUI",
- "short_name": "WebUI",
+ "name": "MyWebSite",
+ "short_name": "MySite",
"icons": [
{
- "src": "/static/web-app-manifest-192x192.png",
+ "src": "/web-app-manifest-192x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
- "src": "/static/web-app-manifest-512x512.png",
+ "src": "/web-app-manifest-512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
diff --git a/static/static/splash-dark.png b/static/static/splash-dark.png
index 202c03f8e..3b119a33a 100644
Binary files a/static/static/splash-dark.png and b/static/static/splash-dark.png differ
diff --git a/static/static/splash.png b/static/static/splash.png
index 389196ca6..3b119a33a 100644
Binary files a/static/static/splash.png and b/static/static/splash.png differ
diff --git a/static/static/web-app-manifest-192x192.png b/static/static/web-app-manifest-192x192.png
index fbd2eab6e..d6ea07ff3 100644
Binary files a/static/static/web-app-manifest-192x192.png and b/static/static/web-app-manifest-192x192.png differ
diff --git a/static/static/web-app-manifest-512x512.png b/static/static/web-app-manifest-512x512.png
index afebe2cd0..ffda26cb9 100644
Binary files a/static/static/web-app-manifest-512x512.png and b/static/static/web-app-manifest-512x512.png differ