All checks were successful
		
		
	
	continuous-integration/drone/push Build is passing
				
			
		
			
				
	
	
		
			37 lines
		
	
	
		
			833 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			833 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
server {
 | 
						|
    client_max_body_size 108M;
 | 
						|
 | 
						|
    root /var/www/web;
 | 
						|
    
 | 
						|
    rewrite ^/app\.php/?(.*)$ /$1 permanent;
 | 
						|
    
 | 
						|
    try_files $uri @rewriteapp;
 | 
						|
 | 
						|
    location @rewriteapp {
 | 
						|
       rewrite ^(.*)$ /app.php/$1 last;
 | 
						|
    }
 | 
						|
    
 | 
						|
    # Deny all . files
 | 
						|
    location ~ /\. {
 | 
						|
        deny all;
 | 
						|
    }
 | 
						|
 | 
						|
    location ~ ^/(app|app_dev)\.php(/|$) {
 | 
						|
        
 | 
						|
        fastcgi_pass 127.0.0.1:9000;
 | 
						|
        fastcgi_split_path_info ^(.+\.php)(/.*)$;
 | 
						|
        fastcgi_index app.php;
 | 
						|
        send_timeout 1800;
 | 
						|
        fastcgi_read_timeout 1800;
 | 
						|
        fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;
 | 
						|
        fastcgi_buffers 16 16k;
 | 
						|
        fastcgi_buffer_size 32k;
 | 
						|
        include fastcgi_params;
 | 
						|
    }
 | 
						|
   
 | 
						|
    location /(bundles|media) {
 | 
						|
        access_log off;
 | 
						|
        expires 30d;
 | 
						|
        try_files $uri @rewriteapp;
 | 
						|
    }
 | 
						|
} |