nginx.conf 855 Bytes
location PATHTOCHANGE {
       alias ALIASTOCHANGE;
       if ($scheme = http) {
            rewrite ^ https://$server_name$request_uri? permanent;
       }
       client_max_body_size 10G;
       index index.php;
       try_files $uri $uri/ /index.php;
       location ~ [^/]\.php(/|$) {
           fastcgi_split_path_info ^(.+?\.php)(/.*)$;
           fastcgi_pass unix:/var/run/php5-fpm-NAMETOCHANGE.sock;
           include fastcgi_params;
           fastcgi_param REMOTE_USER $remote_user;
           fastcgi_param PATH_INFO $fastcgi_path_info;
           fastcgi_param HTTPS on;
       }
       
       # Include SSOWAT user panel.
       sub_filter </head> '<script type="text/javascript" src="/ynhpanel.js"></script></head>';
       sub_filter_once on;
}

location ~ ^PATHTOCHANGE/(data|config|\.ht|db_structure\.xml|README) {
       deny all;
}