mirror of
				https://github.com/ClusterCockpit/cc-docker.git
				synced 2025-11-04 02:55:08 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			566 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			566 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
server {
 | 
						|
    server_name localhost;
 | 
						|
    root /var/www/symfony/public;
 | 
						|
 | 
						|
    location / {
 | 
						|
        try_files $uri /index.php$is_args$args;
 | 
						|
    }
 | 
						|
 | 
						|
    location ~ ^/index\.php(/|$) {
 | 
						|
        fastcgi_pass php-upstream;
 | 
						|
        fastcgi_split_path_info ^(.+\.php)(/.*)$;
 | 
						|
        include fastcgi_params;
 | 
						|
        fastcgi_param HTTPS off;
 | 
						|
        fastcgi_read_timeout 300;
 | 
						|
        fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
 | 
						|
        fastcgi_param DOCUMENT_ROOT $realpath_root;
 | 
						|
        internal;
 | 
						|
    }
 | 
						|
 | 
						|
     location ~ \.php$ {
 | 
						|
        return 404;
 | 
						|
    }
 | 
						|
}
 |