-
Notifications
You must be signed in to change notification settings - Fork 4
Merge update #79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merge update #79
Changes from all commits
c6d6e43
8e8e190
4691d96
e41d0e1
af26fed
3758353
7689cd6
16455fe
003734f
9fe19a8
7174bd4
b35374e
bf5fc48
589f46c
cb958df
17f19a6
a9878d1
0158553
b130611
3eb70d9
57bfcad
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| FROM nginx:1.29.0-alpine | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The Docker image Please use a valid and existing image tag to ensure the build is successful. |
||
|
|
||
| EXPOSE 8080 | ||
|
|
||
| COPY ./nginx/nginx.conf.template /etc/nginx/templates/default.conf.template | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| PDF_PROCESSOR_URL=http://pdf_processor_service:8000 | ||
| PDF_EXTRACTOR_URL=http://pdf_extraction_service:8000 | ||
| CHAT_URL=http://chat_service:8000 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| server { | ||
| listen 8080; | ||
| server_name localhost; | ||
|
|
||
| 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_set_header X-NginX-Proxy true; | ||
| proxy_set_header Host $host; | ||
|
|
||
| location /pdf_processor/ { | ||
| proxy_pass ${PDF_PROCESSOR_URL}/; | ||
| } | ||
|
|
||
| location /pdf_extraction/ { | ||
| proxy_pass ${PDF_EXTRACTOR_URL}/; | ||
| } | ||
|
|
||
| location /chat/ { | ||
| proxy_pass ${CHAT_URL}/; | ||
| } | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
chromadb/chromaimage is being downgraded from1.0.14to1.0.13. While this might be intentional to work around an issue in the newer version, downgrading dependencies can reintroduce previously fixed bugs or security vulnerabilities.Could you please provide some context for this change? If this downgrade is necessary, it would be good to add a comment in the
docker-compose.ymlfile explaining the reason.