Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
orangecat
ollama
Commits
c0dcea13
"awq/modules/linear/gemv.py" did not exist on "fe314160cd2a12b24f8265a566003086f412c5a3"
Unverified
Commit
c0dcea13
authored
Oct 27, 2023
by
Jeffrey Morgan
Committed by
GitHub
Oct 27, 2023
Browse files
Update faq.md
parent
3a1ed9ff
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
9 deletions
+22
-9
docs/faq.md
docs/faq.md
+22
-9
No files found.
docs/faq.md
View file @
c0dcea13
...
...
@@ -16,25 +16,19 @@ journalctl -u ollama
If you're running
`ollama serve`
directly, the logs will be printed to the console.
## How can I expose
the
Ollama
server
?
## How can I expose Ollama
on my network
?
Ollama binds to 127.0.0.1 port 11434 by default. Change the bind address with the
`OLLAMA_HOST`
environment variable.
Ollama allows cross origin requests from
`127.0.0.1`
and
`0.0.0.0`
by default. Add additional origins with the
`OLLAMA_ORIGINS`
environment variable:
On macOS:
```
bash
OLLAMA_HOST
=
0.0.0.0:11435 ollama serve
```
```
bash
OLLAMA_ORIGINS
=
http://192.168.1.1:
*
,https://example.com ollama serve
```
On Linux:
Create a
`systemd`
drop-in directory and set
`Environment=OLLAMA_HOST`
and/or
`Environment=OLLAMA_ORIGINS`
Create a
`systemd`
drop-in directory and set
`Environment=OLLAMA_HOST`
```
bash
mkdir
-p
/etc/systemd/system/ollama.service.d
...
...
@@ -45,11 +39,30 @@ echo "[Service]" >>/etc/systemd/system/ollama.service.d/environment.conf
echo
"Environment=OLLAMA_HOST=0.0.0.0:11434"
>>
/etc/systemd/system/ollama.service.d/environment.conf
```
Reload
`systemd`
and restart Ollama:
```
bash
systemctl daemon-reload
systemctl restart ollama
```
## How can I allow additional web origins to access Ollama?
Ollama allows cross origin requests from
`127.0.0.1`
and
`0.0.0.0`
by default. Add additional origins with the
`OLLAMA_ORIGINS`
environment variable:
On macOS:
```
bash
OLLAMA_ORIGINS
=
http://192.168.1.1:
*
,https://example.com ollama serve
```
On Linux:
```
bash
echo
"Environment=OLLAMA_ORIGINS=http://129.168.1.1:*,https://example.com"
>>
/etc/systemd/system/ollama.service.d/environment.conf
```
Reload
`systemd`
and restart Ollama
.
Reload
`systemd`
and restart Ollama
:
```
bash
systemctl daemon-reload
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment