People,
Does anyone have a working setup with this combination? If so, could I
see the nginx.conf (ssl.conf) file? (I have tried all sorts of Google
solutions with no success).
Thanks,
Phil.
Philip R.
GPO Box 3411
Sydney NSW 2001
Australia
E-mail: [email protected]
Hi Philip,
On 02.11.2011 14:59, Philip R. wrote:
People,
Does anyone have a working setup with this combination? If so, could
I see the nginx.conf (ssl.conf) file? (I have tried all sorts of
Google solutions with no success).
What’s the problem.
it’s pretty straight forward.
1.) php setup
location ~ \.php {
include fastcgi_params;
fastcgi_split_path_info ^(.+\.php)(.*)$;
fastcgi_pass php; # => upstream php { ... }
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME
/installed$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED
$document_root$fastcgi_path_info;
}
2.) location setup.
location /roundcube{
alias /installed/roundcube;
index index.php;
try_files $uri $uri/ index.php;
}
BR
Aleks