Skip to content

Commit

Permalink
Add chatbot to reverse proxy config
Browse files Browse the repository at this point in the history
  • Loading branch information
ninori9 committed Jan 5, 2025
1 parent 72c026d commit cf5d9f2
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions reverse-proxy/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,11 @@ server {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}

location /chat/ {
proxy_pass http://chatbot:80/;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}

0 comments on commit cf5d9f2

Please sign in to comment.