mirror of
				https://github.com/KevinMidboe/hivemonitor.git
				synced 2025-10-29 17:40:25 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			308 B
		
	
	
	
		
			Nginx Configuration File
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			308 B
		
	
	
	
		
			Nginx Configuration File
		
	
	
	
	
	
| events {
 | |
|     worker_connections 1024;
 | |
| }
 | |
| 
 | |
| http {
 | |
|     include mime.types;
 | |
|     sendfile on;
 | |
| 
 | |
|     server {
 | |
|         listen 8080;
 | |
|         listen [::]:8080;
 | |
| 
 | |
|         # resolver 127.0.0.11;
 | |
|         autoindex off;
 | |
| 
 | |
|         server_name _;
 | |
|         server_tokens off;
 | |
| 
 | |
|         root /app/;
 | |
|         gzip_static on;
 | |
|     }
 | |
| } |