From 490e4d0bb0849fc9716b1ae808cbe5509d002e9e Mon Sep 17 00:00:00 2001 From: Alexey Skobkin Date: Sat, 24 Feb 2024 04:13:02 +0300 Subject: [PATCH] ollama. Adding Nginx config. --- ollama/nginx/ollama-webui.conf | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 ollama/nginx/ollama-webui.conf diff --git a/ollama/nginx/ollama-webui.conf b/ollama/nginx/ollama-webui.conf new file mode 100644 index 0000000..5dc0cc7 --- /dev/null +++ b/ollama/nginx/ollama-webui.conf @@ -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/; + } +}