We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b74c686 commit f4bb181Copy full SHA for f4bb181
install/tpl/nginx_ispconfig.vhost.master
@@ -48,4 +48,24 @@ server {
48
location /phpMyAdmin {
49
rewrite ^/* /phpmyadmin last;
50
}
51
+
52
+ location /squirrelmail {
53
+ root /usr/share/;
54
+ index index.php index.html index.htm;
55
+ location ~ ^/squirrelmail/(.+\.php)$ {
56
+ try_files $uri =404;
57
58
+ fastcgi_pass 127.0.0.1:9000;
59
+ {ssl_comment}fastcgi_param HTTPS {fastcgi_ssl};
60
+ fastcgi_index index.php;
61
+ fastcgi_param SCRIPT_FILENAME $request_filename;
62
+ include /etc/nginx/fastcgi_params;
63
+ }
64
+ location ~* ^/squirrelmail/(.+\.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt))$ {
65
66
67
68
+ location /webmail {
69
+ rewrite ^/* /squirrelmail last;
70
71
0 commit comments