mirror of
				https://github.com/infiniflow/ragflow.git
				synced 2025-10-31 17:59:43 +00:00 
			
		
		
		
	 6b3a40be5c
			
		
	
	
		6b3a40be5c
		
			
		
	
	
	
	
		
			
			### What problem does this PR solve? Related source file is in Windows/DOS format, they are format to Unix format. ### Type of change - [x] Refactoring Signed-off-by: Jin Hai <haijin.chn@gmail.com>
		
			
				
	
	
		
			34 lines
		
	
	
		
			684 B
		
	
	
	
		
			Nginx Configuration File
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			684 B
		
	
	
	
		
			Nginx Configuration File
		
	
	
	
	
	
| user  root;
 | |
| worker_processes  auto;
 | |
| 
 | |
| error_log  /var/log/nginx/error.log notice;
 | |
| pid        /var/run/nginx.pid;
 | |
| 
 | |
| 
 | |
| events {
 | |
|     worker_connections  1024;
 | |
| }
 | |
| 
 | |
| 
 | |
| http {
 | |
|     include       /etc/nginx/mime.types;
 | |
|     default_type  application/octet-stream;
 | |
| 
 | |
|     log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
 | |
|                       '$status $body_bytes_sent "$http_referer" '
 | |
|                       '"$http_user_agent" "$http_x_forwarded_for"';
 | |
| 
 | |
|     access_log  /var/log/nginx/access.log  main;
 | |
| 
 | |
|     sendfile        on;
 | |
|     #tcp_nopush     on;
 | |
| 
 | |
|     keepalive_timeout  65;
 | |
| 
 | |
|     #gzip  on;
 | |
|     client_max_body_size 128M;
 | |
| 
 | |
|     include /etc/nginx/conf.d/ragflow.conf;
 | |
| }
 | |
| 
 |