22 lines
		
	
	
		
			709 B
		
	
	
	
		
			Nginx Configuration File
		
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			709 B
		
	
	
	
		
			Nginx Configuration File
		
	
	
	
| location /roundcubemail {
 | |
| 	rewrite ^/roundcubemail/?(.*)$ /roundcubemail/public_html/$1 last;
 | |
| }
 | |
| 
 | |
| location /roundcubemail/public_html {
 | |
| 	root /usr/share/webapps;
 | |
| 	index index.html index.htm index.php;
 | |
| 
 | |
| 	location ~ \.php(?:$|/) {
 | |
| 		fastcgi_split_path_info ^(.+.php)(/.+)$;
 | |
| 		fastcgi_pass unix:/run/php-fpm/php-fpm.sock;
 | |
| 		fastcgi_index index.php;
 | |
| 	
 | |
| 		include fastcgi.conf;
 | |
| 
 | |
| 		fastcgi_param PHP_ADMIN_VALUE open_basedir=/etc/webapps/roundcubemail/:/usr/share/webapps/roundcubemail:/var/logs/roundcubemail/:/var/cache/roundcubemail/:/tmp:/usr/share/pear:/dev/urandom;
 | |
| 		fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
 | |
| 		fastcgi_param PATH_INFO $fastcgi_path_info;
 | |
| 		fastcgi_param HTTPS on;
 | |
| 	}
 | |
| }
 |