2023-12-04 23:17:51 -08:00
|
|
|
# If you're serving both the frontend and backend (Recommended)
|
|
|
|
|
# Set the public API base URL for seamless communication
|
2023-12-05 02:01:49 -05:00
|
|
|
PUBLIC_API_BASE_URL='/ollama/api'
|
|
|
|
|
|
2023-12-04 23:17:51 -08:00
|
|
|
# If you're serving only the frontend (Not recommended and not fully supported)
|
|
|
|
|
# Comment above and Uncomment below
|
|
|
|
|
# You can use the default value or specify a custom path, e.g., '/api'
|
|
|
|
|
# PUBLIC_API_BASE_URL='http://{location.hostname}:11434/api'
|
2023-10-22 00:28:27 -06:00
|
|
|
|
2023-12-04 23:17:51 -08:00
|
|
|
# Ollama URL for the backend to connect
|
|
|
|
|
# The path '/ollama/api' will be redirected to the specified backend URL
|
2023-12-05 02:01:49 -05:00
|
|
|
OLLAMA_API_BASE_URL='http://localhost:11434/api'
|