Unanswered
			
			
 
			
	
		
			
		
		
		
		
	
			
		
		Hi Everyone,
Does Anyone Have Any Pointers On How To Make The Clearml-Server Web Service Secure Using Ssl By Setting Up Nginx?
I Have Played Around With It A Bit In Relation To Getting A Jupyterhub Setup Working Over Https, However, I Think That Was Mor
SuccessfulKoala55
SUCCESS!!!
This appears to be working.
Setup certifications us  sudo certbot --nginx  .
Then edit the  default  configuration file in  /etc/nginx/sites-available
`  server {
listen 80;
return 301 https://$host$request_uri;
}
server {
listen 443;
server_name your-domain-name;
ssl_certificate           /etc/letsencrypt/live/your-domain-name/fullchain.pem;
ssl_certificate_key       /etc/letsencrypt/live/your-domain-name/privkey.pem;
ssl on;
ssl_session_cache  builtin:1000  shared:SSL:10m;
ssl_protocols  TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers HIGH:!aNULL:!eNULL:!EXPORT:!CAMELLIA:!DES:!MD5:!PSK:!RC4;
ssl_prefer_server_ciphers on;
access_log            /var/log/nginx/jenkins.access.log;
location / {
  proxy_set_header        Host $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;
  # Fix the It appears that your reverse proxy set up is broken" error.
  proxy_pass           ` ` ;
  proxy_read_timeout  90;
  proxy_redirect       ` `   ` ` ;
}
} `
Point your browser towards  http://your-domain-name   or  https://your-domain-name   will result in the browser being forwarded to port 8080 on the local host machine via port 443 SSL.
356 Views
				0
Answers
				
					 
	4 years ago
				
					
						 
	2 years ago