mirror of
				https://github.com/zoriya/Kyoo.git
				synced 2025-10-31 02:27:11 -04: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";
 | |
| 	}
 | |
| }
 |