添加工作流
This commit is contained in:
		
							
								
								
									
										21
									
								
								nginx.conf
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										21
									
								
								nginx.conf
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,21 @@
 | 
			
		||||
server {
 | 
			
		||||
    listen       80;
 | 
			
		||||
    listen  [::]:80;
 | 
			
		||||
    server_name  localhost;
 | 
			
		||||
 | 
			
		||||
    access_log  /var/log/nginx/host.access.log  main;
 | 
			
		||||
 | 
			
		||||
    location / {
 | 
			
		||||
        root   /usr/share/nginx/html;
 | 
			
		||||
        index  index.html index.htm;
 | 
			
		||||
 | 
			
		||||
        # 新增下面这句,其他是默认nginx配置
 | 
			
		||||
        # 解决部分前端框架的路由问题,在浏览器刷新报错404
 | 
			
		||||
        try_files $uri $uri/ /index.html;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    error_page   500 502 503 504  /50x.html;
 | 
			
		||||
    location = /50x.html {
 | 
			
		||||
        root   /usr/share/nginx/html;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user