增加前端docker配置文件 nginx.conf Dockerfile
This commit is contained in:
		
							parent
							
								
									e8af0b7a04
								
							
						
					
					
						commit
						50d6b6f857
					
				
							
								
								
									
										28
									
								
								nginx.conf
									
									
									
									
									
								
							
							
						
						
									
										28
									
								
								nginx.conf
									
									
									
									
									
								
							| @ -1,21 +1,27 @@ | ||||
| server { | ||||
|     listen       80; | ||||
|     listen  [::]:80; | ||||
|     server_name  localhost; | ||||
| 
 | ||||
|     access_log  /var/log/nginx/host.access.log  main; | ||||
| 
 | ||||
|     server { | ||||
|         listen       80; | ||||
|         server_name  localhost; | ||||
| 	    	charset utf-8; | ||||
| 
 | ||||
| 		    location / { | ||||
|             root   /usr/share/nginx/html; | ||||
|         index  index.html index.htm; | ||||
| 
 | ||||
|         # 新增下面这句,其他是默认nginx配置 | ||||
|         # 解决部分前端框架的路由问题,在浏览器刷新报错404 | ||||
| 		      	try_files $uri $uri/ /index.html; | ||||
|             index  index.html index.htm; | ||||
|         } | ||||
| 
 | ||||
| 	    	location /prod-api/ { | ||||
| 			      proxy_set_header Host $http_host; | ||||
| 			      proxy_set_header X-Real-IP $remote_addr; | ||||
| 			      proxy_set_header REMOTE-HOST $remote_addr; | ||||
| 			      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | ||||
| 			      proxy_pass http://192.168.50.208:8080/; | ||||
| 		    } | ||||
| 
 | ||||
|         error_page   500 502 503 504  /50x.html; | ||||
|         location = /50x.html { | ||||
|         root   /usr/share/nginx/html; | ||||
|             root   html; | ||||
|         } | ||||
| } | ||||
|     } | ||||
| 
 | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user