-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added ngnix to the ai1899 stack. removed swarm support as there is no…
…t way to test it yet
- Loading branch information
Showing
3 changed files
with
43 additions
and
141 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
events {} | ||
|
||
http { | ||
server { | ||
listen 80; | ||
|
||
location /ai/ { | ||
proxy_pass http://ai:5555/; | ||
} | ||
|
||
# There is a known issue with qdrant behind reverse proxy, pending for solution: https://github.com/qdrant/qdrant-web-ui/issues/94 | ||
#location /qdrant/ { | ||
# proxy_pass http://qdrant-container:6333/dashboard/; | ||
#} | ||
|
||
location /redis-commander/ { | ||
proxy_pass http://redis-commander:8081/; | ||
} | ||
|
||
location / { | ||
return 404; | ||
} | ||
} | ||
} |