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 | 80 +++++++++++++++++++++++++++++++++++++++- 1 files changed, 78 insertions(+), 2 deletions(-) diff --git a/install/tpl/nginx_apps.vhost.master b/install/tpl/nginx_apps.vhost.master index 30416e3..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; } @@ -15,14 +17,88 @@ } location ~ \.php$ { - fastcgi_pass 127.0.0.1:{fpm_port}; + try_files $uri =404; + include /etc/nginx/fastcgi_params; + fastcgi_pass unix:{fpm_socket}; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param PATH_INFO $fastcgi_script_name; - include /etc/nginx/fastcgi_params; + fastcgi_buffer_size 128k; + fastcgi_buffers 256 4k; + fastcgi_busy_buffers_size 256k; + fastcgi_temp_file_write_size 256k; } location ~ /\. { deny all; } + + location /phpmyadmin { + root /usr/share/; + index index.php index.html index.htm; + location ~ ^/phpmyadmin/(.+\.php)$ { + try_files $uri =404; + root /usr/share/; + include /etc/nginx/fastcgi_params; + # 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 $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/; + } + } + location /phpMyAdmin { + rewrite ^/* /phpmyadmin last; + } + + location /squirrelmail { + root /usr/share/; + index index.php index.html index.htm; + location ~ ^/squirrelmail/(.+\.php)$ { + try_files $uri =404; + root /usr/share/; + include /etc/nginx/fastcgi_params; + # 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 $document_root$fastcgi_script_name; + fastcgi_buffer_size 128k; + fastcgi_buffers 256 4k; + fastcgi_busy_buffers_size 256k; + fastcgi_temp_file_write_size 256k; + } + location ~* ^/squirrelmail/(.+\.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt))$ { + root /usr/share/; + } + } + location /webmail { + rewrite ^/* /squirrelmail last; + } + + location /cgi-bin/mailman { + root /usr/lib/; + fastcgi_split_path_info (^/cgi-bin/mailman/[^/]*)(.*)$; + include /etc/nginx/fastcgi_params; + fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; + fastcgi_param PATH_INFO $fastcgi_path_info; + fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info; + fastcgi_intercept_errors on; + fastcgi_pass unix:{cgi_socket}; + } + + location /images/mailman { + alias /usr/share/images/mailman; + } + + location /pipermail { + alias /var/lib/mailman/archives/public; + autoindex on; + } } \ No newline at end of file -- Gitblit v1.9.1