ollama / nginx.conf
barisaydin's picture
Update nginx.conf
7f6ec81 verified
raw
history blame
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;
}
}
}