Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
barisaydin
/
ollama
like
0
Sleeping
App
Files
Files
Community
1
7f6ec81
ollama
/
nginx.conf
barisaydin
Update nginx.conf
7f6ec81
verified
7 months ago
raw
Copy download link
history
blame
Safe
271 Bytes
events {}
http {
server {
listen
80
;
location / {
access_by_lua_file
/usr/
local
/openresty/
nginx
/lua/
validate_api_key.lua;
proxy_pass http:
//
localhost:
11434
;
proxy_set_header Host localhost:
11434
;
}
}
}