You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							16 lines
						
					
					
						
							312 B
						
					
					
				
			
		
		
	
	
							16 lines
						
					
					
						
							312 B
						
					
					
				| root {{ roundcube_dir }}/public_html;
 | |
| index index.php;
 | |
| 
 | |
| disable_symlinks off;
 | |
| 
 | |
| location ~ /\. {
 | |
| 	deny all;
 | |
| }
 | |
| 
 | |
| location ~ \.php$ {
 | |
| 	include /etc/nginx/fastcgi.conf;
 | |
| 
 | |
|     fastcgi_pass unix:{{ roundcube_fpm_socket }};
 | |
|     fastcgi_index index.php;
 | |
| 	fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
 | |
| } |