Closed FeryET closed 2 years ago
I've updated in the release v1.0.2, please check!
The issue still persists if you are using a different BASE_URI other than localhost:8080. For example vindr.labelling.com
.
Unfortunately, we are accessing through host:port
connection. If you want to publish or access the LAB service through domain, you can use a proxy by nginx in front of service, here is the config example:
http {
server {
listen 80;
server_name your.domain;
client_max_body_size 100m;
proxy_set_header Host $host;
proxy_request_buffering off;
proxy_max_temp_file_size 0;
location / {
proxy_http_version 1.1;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
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 Host $http_host;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_pass_request_headers on;
proxy_pass http://1.2.3.4:8080;
}
}
events {
worker_connections 4096; ## Default: 1024
}
Hi,
I'm trying to deploy the docker compose using the step by step guide, but the elastic search and the minio services are not accessible in api service.
There are a couple of issues:
docker/conf/api/config.production.toml
has some configs that need explaining. What exactly areaccess_key_id
,secret_access_key
andbucket_name
and should we do anything in theMinio
console panel after logging in. Should any of theelasticsearch
segment be customized?What are these templates, and if I only import the two configurations for keycloak, is that enough for the elastic search templates?
Thanks