Originally created by @kyllan16693 on GitHub (Aug 23, 2024).
Bug Report
Installation Method
pip
Environment
Open WebUI Version: v0.3.15
Operating System: Ubuntu 20.04
Confirmation:
I have read and followed all the instructions provided in the README.md.
I am on the latest version of both Open WebUI and Ollama.
I have provided the exact steps to reproduce the bug in the "Steps to Reproduce" section below.
Expected Behavior:
The port OpenWebUI is on should change when the environment variable PORT is changed
Actual Behavior:
It stays with the default 8080
Description
Bug Summary:
The port does not change when the environment variable PORT is set.
Reproduction Details
Steps to Reproduce:
install with pip pip install open-webui
set port variable export PORT=8081
start open-webui serve
Logs and Screenshots
INFO: Uvicorn running on http://0.0.0.0:8080 (Press CTRL+C to quit)
$ echo $PORT
8081
Additional Information
I created a blank vm and just installed and set the PORT env var. Nothing special.
Originally created by @kyllan16693 on GitHub (Aug 23, 2024).
# Bug Report
## Installation Method
pip
## Environment
- **Open WebUI Version:** v0.3.15
- **Operating System:** Ubuntu 20.04
**Confirmation:**
- [x] I have read and followed all the instructions provided in the README.md.
- [x] I am on the latest version of both Open WebUI and Ollama.
- [x] I have provided the exact steps to reproduce the bug in the "Steps to Reproduce" section below.
## Expected Behavior:
The port OpenWebUI is on should change when the environment variable `PORT` is changed
## Actual Behavior:
It stays with the default 8080
## Description
**Bug Summary:**
The port does not change when the environment variable `PORT` is set.
## Reproduction Details
**Steps to Reproduce:**
install with pip
`pip install open-webui`
set port variable
`export PORT=8081`
start
`open-webui serve`
## Logs and Screenshots
```
INFO: Uvicorn running on http://0.0.0.0:8080 (Press CTRL+C to quit)
$ echo $PORT
8081
```
## Additional Information
I created a blank vm and just installed and set the `PORT` env var. Nothing special.
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.
Originally created by @kyllan16693 on GitHub (Aug 23, 2024).
Bug Report
Installation Method
pip
Environment
Open WebUI Version: v0.3.15
Operating System: Ubuntu 20.04
Confirmation:
Expected Behavior:
The port OpenWebUI is on should change when the environment variable
PORTis changedActual Behavior:
It stays with the default 8080
Description
Bug Summary:
The port does not change when the environment variable
PORTis set.Reproduction Details
Steps to Reproduce:
install with pip
pip install open-webuiset port variable
export PORT=8081start
open-webui serveLogs and Screenshots
Additional Information
I created a blank vm and just installed and set the
PORTenv var. Nothing special.@tjbck commented on GitHub (Aug 23, 2024):
it's
--port 8081.@kyllan16693 commented on GitHub (Aug 23, 2024):
Thank you!
Do you think this could be added to
open-webui --helpand the docs website?