Added a bunch of services
This commit is contained in:
		
							
								
								
									
										31
									
								
								docker/config/nginx.conf
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										31
									
								
								docker/config/nginx.conf
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,31 @@
 | 
			
		||||
worker_processes  auto;
 | 
			
		||||
pid /var/run/nginx.pid;
 | 
			
		||||
 | 
			
		||||
events {
 | 
			
		||||
    worker_connections  1024;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
http {
 | 
			
		||||
  include       mime.types;
 | 
			
		||||
  default_type  application/octet-stream;
 | 
			
		||||
 | 
			
		||||
  gzip on;
 | 
			
		||||
  gzip_proxied any;
 | 
			
		||||
  gzip_types text/plain text/css application/xml application/xhtml+xml application/rss+xml application/javascript application/x-javascript application/json application/x-font-woff;
 | 
			
		||||
  gzip_vary on;
 | 
			
		||||
  gzip_disable "MSIE [1-6]\.(?!.*SV1)";
 | 
			
		||||
 | 
			
		||||
  sendfile off;
 | 
			
		||||
  keepalive_timeout 65;
 | 
			
		||||
 | 
			
		||||
  server {
 | 
			
		||||
    listen 80;
 | 
			
		||||
    index index.html;
 | 
			
		||||
    root /usr/share/nginx/html;
 | 
			
		||||
    autoindex off;
 | 
			
		||||
 | 
			
		||||
    location / {
 | 
			
		||||
      try_files $uri$args $uri$args/ /index.html;
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										2
									
								
								docker/config/robots.txt
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								docker/config/robots.txt
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,2 @@
 | 
			
		||||
User-Agent: *
 | 
			
		||||
Allow: /
 | 
			
		||||
		Reference in New Issue
	
	Block a user