Added bar assistant

This commit is contained in:
2023-05-15 22:58:54 -04:00
parent cb580bafa3
commit 6d3f702517
5 changed files with 133 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
server {
listen 3000 default_server;
listen [::]:3000 default_server;
server_name _;
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
client_max_body_size 100M;
location /bar/ {
proxy_pass http://bar-assistant:3000/;
}
location /search/ {
proxy_pass http://meilisearch:7700/;
}
location / {
proxy_pass http://salt-rim:8080/;
}
}