ollama. Adding Nginx config.
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
Alexey Skobkin 2024-02-24 04:13:02 +03:00
parent f0f12fba83
commit 490e4d0bb0
No known key found for this signature in database
GPG Key ID: 5D5CEF6F221278E7
1 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,22 @@
server {
listen 80;
server_name ai.domain.tld;
#charset utf-8;
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
proxy_read_timeout 600s;
proxy_send_timeout 600s;
proxy_pass http://127.0.0.1:8010/;
}
}