Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Hi, How Do I Enable Ssl With Our Self-Hosted Clearml-Server ?

Hi,
How do I enable ssl with our self-hosted clearml-server ?

  
  
Posted one year ago
Votes Newest

Answers 4


Hi ExhilaratedShrimp49 ,
SSL termination is usually handled by load balancers in cloud environments. For local networks, you can use nginx to do the SSL termination (I think there were some threads here or in GitHub about that)

  
  
Posted one year ago

I built an basic nginx container
` FROM nginx

COPY ./default.conf /etc/nginx/conf.d/default.conf

COPY ./includes/ /etc/nginx/includes/

COPY ./ssl/ /etc/ssl/certs/nginx/ copied the signed certificates and the modified nginx deafult.conf `

the important part is to modify the compose file to redirect all traffic to nginx container
reverse: container_name: reverse image: reverse_nginx restart: unless-stopped depends_on: - apiserver - webserver - fileserver ports: - "8080:8080" - "8008:8008" - "8081:8081" networks: - backend
and block all traffic from the rest by simply comment out ports for all rest of clearml services

  
  
Posted one year ago

Thanks!
I will try this.

  
  
Posted one year ago
795 Views
4 Answers
one year ago
one year ago
Tags