document root is at /usr/share/nginx/html map app is located in /usr/share/nginx/html server responds to /, /map, /map/, /karte, /karte/ server uses DE or EN page depending on $http_accept_language as set by client
		
			
				
	
	
		
			14 lines
		
	
	
		
			341 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			341 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| # Version: VVVVV
 | |
| FROM nginx:alpine
 | |
| 
 | |
| # set labels
 | |
| LABEL org.opencontainers.image.authors="kasper.fischer@rub.de"
 | |
| 
 | |
| # copy nginx config files
 | |
| COPY nginx/nginx.conf /etc/nginx/nginx.conf
 | |
| COPY nginx/mime.types /etc/nginx/mime.types
 | |
| COPY nginx/default.conf /etc/nginx/conf.d/default.conf
 | |
| 
 | |
| # copy webpage content
 | |
| COPY www /usr/share/nginx/html/map
 |