Till Brehm
2015-03-26 cb214c699db7a6b04b5f069d2985a3cbe02f2560
Fixed a regex in ispconfig and apps vhost for nginx: https://www.howtoforge.com/community/threads/possible-bug-in-a-nginx-regex.68948/
2 files modified
4 ■■■■ changed files
install/tpl/nginx_apps.vhost.master 2 ●●● patch | view | raw | blame | history
install/tpl/nginx_ispconfig.vhost.master 2 ●●● patch | view | raw | blame | history
install/tpl/nginx_apps.vhost.master
@@ -12,7 +12,7 @@
        }
        # serve static files directly
        location ~* ^.+.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt)$ {
        location ~* ^.+\.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt)$ {
               access_log        off;
        }
install/tpl/nginx_ispconfig.vhost.master
@@ -19,7 +19,7 @@
        }
        # serve static files directly
        location ~* ^.+.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt)$ {
        location ~* ^.+\.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt)$ {
               access_log        off;
        }