* Add notemark. * Fix error. * Fix nginx conf. * Update description.md --------- Co-authored-by: Nicolas Meienberger <47644445+meienberger@users.noreply.github.com>
		
			
				
	
	
		
			19 lines
		
	
	
		
			274 B
		
	
	
	
		
			Nginx Configuration File
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			274 B
		
	
	
	
		
			Nginx Configuration File
		
	
	
	
	
	
upstream notemark-backend {
 | 
						|
    server notemark-backend:8000;
 | 
						|
}
 | 
						|
 | 
						|
upstream notemark {
 | 
						|
    server notemark:8000;
 | 
						|
}
 | 
						|
 | 
						|
server {
 | 
						|
    listen 80;
 | 
						|
 | 
						|
    location / {
 | 
						|
        proxy_pass http://notemark;
 | 
						|
    }
 | 
						|
 | 
						|
    location /api {
 | 
						|
        proxy_pass http://notemark-backend/api;
 | 
						|
    }
 | 
						|
} |