21 lines
		
	
	
		
			381 B
		
	
	
	
		
			Nginx Configuration File
		
	
	
	
	
	
		
		
			
		
	
	
			21 lines
		
	
	
		
			381 B
		
	
	
	
		
			Nginx Configuration File
		
	
	
	
	
	
| 
								 | 
							
								worker_processes  1;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								error_log  /var/log/nginx/error.log debug;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								events {
							 | 
						||
| 
								 | 
							
								    worker_connections  1024;
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								http {
							 | 
						||
| 
								 | 
							
								    server {
							 | 
						||
| 
								 | 
							
								        listen 80;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        location / {
							 | 
						||
| 
								 | 
							
								            proxy_pass http://vikunja-frontend:80;
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								        location ~* ^/(api|dav|\.well-known)/ {
							 | 
						||
| 
								 | 
							
								            proxy_pass http://vikunja-api:3456;
							 | 
						||
| 
								 | 
							
								            client_max_body_size 20M;
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								}
							 |