From 2cb1563f63386b35a69e460051aa9b4a2851d104 Mon Sep 17 00:00:00 2001
From: ftimme <ft@falkotimme.com>
Date: Wed, 30 May 2012 07:30:44 -0400
Subject: [PATCH] - Added (clickable) placeholders to client messaging function. - Added check so that the client password isn't inserted into the message (for security reasons).

---
 install/tpl/nginx_apps.vhost.master |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/install/tpl/nginx_apps.vhost.master b/install/tpl/nginx_apps.vhost.master
index 9de75dd..560f6b5 100644
--- a/install/tpl/nginx_apps.vhost.master
+++ b/install/tpl/nginx_apps.vhost.master
@@ -5,6 +5,8 @@
 
         root   {apps_vhost_dir};
 
+        client_max_body_size 20M;
+
         location / {
                index index.php index.html;
         }
@@ -41,12 +43,12 @@
                        # To access phpMyAdmin, the default user (like www-data on Debian/Ubuntu) must be used
                        fastcgi_pass 127.0.0.1:9000;
                        fastcgi_index index.php;
-                       fastcgi_param SCRIPT_FILENAME $request_filename;
-                       fastcgi_param PATH_INFO $fastcgi_script_name;
+                       fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                        fastcgi_buffer_size 128k;
                        fastcgi_buffers 256 4k;
                        fastcgi_busy_buffers_size 256k;
                        fastcgi_temp_file_write_size 256k;
+                       fastcgi_read_timeout 240;
                }
                location ~* ^/phpmyadmin/(.+\.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt))$ {
                        root /usr/share/;
@@ -66,8 +68,7 @@
                        # To access SquirrelMail, the default user (like www-data on Debian/Ubuntu) must be used
                        fastcgi_pass 127.0.0.1:9000;
                        fastcgi_index index.php;
-                       fastcgi_param SCRIPT_FILENAME $request_filename;
-                       fastcgi_param PATH_INFO $fastcgi_script_name;
+                       fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                        fastcgi_buffer_size 128k;
                        fastcgi_buffers 256 4k;
                        fastcgi_busy_buffers_size 256k;

--
Gitblit v1.9.1