mirror of
				https://github.com/MatteZ02/infra.git
				synced 2025-11-04 10:09:33 +00:00 
			
		
		
		
	Deployer Tasks: Add Nginx
This commit is contained in:
		
							
								
								
									
										69
									
								
								files/nginx/conf/000-default.conf
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										69
									
								
								files/nginx/conf/000-default.conf
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,69 @@
 | 
			
		||||
server {
 | 
			
		||||
 | 
			
		||||
    listen  80 default_server;
 | 
			
		||||
    listen  [::]:80 default_server;
 | 
			
		||||
 | 
			
		||||
    server_name _;
 | 
			
		||||
 | 
			
		||||
    expires off;
 | 
			
		||||
    etag off;
 | 
			
		||||
    if_modified_since off;
 | 
			
		||||
 | 
			
		||||
    gzip on;
 | 
			
		||||
    gzip_min_length 1000;
 | 
			
		||||
    gzip_proxied any;
 | 
			
		||||
    gzip_types *;
 | 
			
		||||
    gunzip on;
 | 
			
		||||
 | 
			
		||||
    location / {
 | 
			
		||||
        root   /usr/share/nginx/html;
 | 
			
		||||
        index  index.html index.htm;
 | 
			
		||||
 | 
			
		||||
        return 301 https://$host$request_uri/;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    if ($request_method !~ ^(GET|HEAD|POST)$ )
 | 
			
		||||
    {
 | 
			
		||||
       return 405;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
server {
 | 
			
		||||
 | 
			
		||||
    listen  443 ssl http2 default_server;
 | 
			
		||||
    listen  [::]:443 ssl http2 default_server;
 | 
			
		||||
 | 
			
		||||
    server_name _;
 | 
			
		||||
 | 
			
		||||
    ssl_certificate /etc/nginx/certs/mpp/fullchain.pem;
 | 
			
		||||
    ssl_certificate_key /etc/nginx/certs/mpp/privkey.pem;
 | 
			
		||||
    ssl_protocols TLSv1.2 TLSv1.3;
 | 
			
		||||
    ssl_ciphers 'TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:TLS_AES_128_GCM_SHA256:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES256-CCM8:DHE-RSA-AES256-CCM:ECDHE-ARIA256-GCM-SHA384:DHE-RSA-ARIA256-GCM-SHA384:ECDHE-ARIA128-GCM-SHA256:DHE-RSA-ARIA128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES128-CCM8:DHE-RSA-AES128-CCM';
 | 
			
		||||
    ssl_prefer_server_ciphers on;
 | 
			
		||||
    ssl_session_cache shared:SSL:20m;
 | 
			
		||||
    ssl_session_timeout 180m;
 | 
			
		||||
 | 
			
		||||
    ssl_stapling on;
 | 
			
		||||
    ssl_stapling_verify on;
 | 
			
		||||
    ssl_trusted_certificate /etc/nginx/certs/mpp/chain.pem;
 | 
			
		||||
 | 
			
		||||
    expires off;
 | 
			
		||||
    etag off;
 | 
			
		||||
    if_modified_since off;
 | 
			
		||||
 | 
			
		||||
    gzip on;
 | 
			
		||||
    gzip_min_length 1000;
 | 
			
		||||
    gzip_proxied any;
 | 
			
		||||
    gzip_types *;
 | 
			
		||||
    gunzip on;
 | 
			
		||||
 | 
			
		||||
    location / {
 | 
			
		||||
        root   /usr/share/nginx/html;
 | 
			
		||||
        index  index.html index.htm;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    if ($request_method !~ ^(GET|HEAD|POST)$ )
 | 
			
		||||
    {
 | 
			
		||||
       return 405;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user