internal-ollama / nginx.conf
rockerritesh's picture
Create nginx.conf
f928ff7 verified
raw
history blame
230 Bytes
events {}
http {
server {
listen 7860;
location / {
proxy_pass http://localhost:11434;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}
}