Your IP : 3.147.8.157


Current Path : /etc/nginx/vhosts-includes/
Upload File :
Current File : //etc/nginx/vhosts-includes/roundcube.conf

# Created by ispmanager 10.10.2024
# Please do not change this comment
# or all your changes will be overwritten
# the next time you update this package.
location /roundcube {
	alias /usr/share/roundcubemail;
	index index.php;
}
location ~ ^/roundcube/(.+\.php)$ {
	alias /usr/share/roundcubemail/$1;
	fastcgi_pass unix:/var/run/php-fpm74.roundcube.sock;
	fastcgi_index index.php;
	fastcgi_param SCRIPT_FILENAME $request_filename;
	fastcgi_param PHP_FLAG "display_errors=on \n display_startup_errors=on";
	fastcgi_param PHP_VALUE "error_reporting=30711";
	include fastcgi_params;
	fastcgi_param REQUEST_URI $http_x_forwarded_path if_not_empty;
}