Added bar assistant
This commit is contained in:
22
ansible/roles/barassistant/files/nginx.conf
Normal file
22
ansible/roles/barassistant/files/nginx.conf
Normal 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/;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user