blob: 468fa5486a25a634ae183649c8b505da0a712f94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
[Unit]
Description=Open Web UI for LLMs
After=network.target
[Service]
Type=simple
User=open-webui
Group=open-webui
WorkingDirectory=/opt/open-webui
Environment=PYTHONUNBUFFERED=1
EnvironmentFile=/etc/open-webui.conf
ExecStart=/bin/bash -c "cd /opt/open-webui/backend && source ./venv/bin/activate && bash start.sh"
Restart=on-failure
[Install]
WantedBy=multi-user.target
|