mirror of
https://github.com/open-webui/open-webui
synced 2024-11-06 00:32:05 +00:00
1cbbfc7c66
Replace the shell with the uvicorn process, so it becomes PID 1 and receives the signals directly
8 lines
226 B
Bash
Executable File
8 lines
226 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
|
cd "$SCRIPT_DIR" || exit
|
|
|
|
PORT="${PORT:-8080}"
|
|
exec uvicorn main:app --host 0.0.0.0 --port "$PORT" --forwarded-allow-ips '*'
|