[horde] Horde 4 on nginx.

P.V.Anthony pvantony at singnet.com.sg
Wed Jul 11 14:35:47 UTC 2012


On 26/06/2012 05:05, Florian Brandner wrote:

> Yep, I use Horde with nginx. My first problem was the configuration for
> the php parameters. The following block works for me:
>
> location ~ \.php {
>     fastcgi_split_path_info ^(.+\.php)(/.+)$;
>     fastcgi_param  PATH_INFO          $fastcgi_path_info;
>     fastcgi_param  PATH_TRANSLATED    $document_root$fastcgi_path_info;
>     fastcgi_pass   127.0.0.1:9000;
>     fastcgi_index  index.php;
>     fastcgi_param HTTPS $php_https;
>     fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
>     include fastcgi_params;
> }
>
> Later I had to activate ActiveSync, I solved that with the following config:
>
> location /Microsoft-Server-ActiveSync {
>     alias <PathToHordeInstallation>/rpc.php;
>     fastcgi_split_path_info ^(.+\.php)(/.+)$;
>     fastcgi_param  PATH_INFO          $fastcgi_path_info;
>     fastcgi_param  PATH_TRANSLATED    $document_root$fastcgi_path_info;
>     fastcgi_pass   127.0.0.1:9000;
>     fastcgi_index  index.php;
>     fastcgi_param HTTPS $php_https;
>     fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
>     include fastcgi_params;
> }
>
> I hope that helps.

Thank you very very much for sharing the config for nginx with horde. I 
will try it out and give feedback.

Sorry for not replying earlier. I was really caught up with work.

Once again thank you for sharing the config.

P.V.Anthony




More information about the horde mailing list