mirror of
				https://github.com/zoriya/Kyoo.git
				synced 2025-11-03 19:17:16 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			369 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			369 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
server {
 | 
						|
	listen ${PORT};
 | 
						|
	root /usr/share/nginx/html;
 | 
						|
 | 
						|
	location / {
 | 
						|
		proxy_pass ${FRONT_URL};
 | 
						|
		proxy_http_version 1.1;
 | 
						|
		proxy_set_header Upgrade $http_upgrade;
 | 
						|
		proxy_set_header Connection "upgrade";
 | 
						|
	}
 | 
						|
 | 
						|
	location /api/ {
 | 
						|
		proxy_pass ${BACK_URL}/;
 | 
						|
		proxy_http_version 1.1;
 | 
						|
		proxy_set_header Upgrade $http_upgrade;
 | 
						|
		proxy_set_header Connection "upgrade";
 | 
						|
	}
 | 
						|
}
 |