2015-05-23 15:29:21 +02:00
|
|
|
location YNH_WWW_LOCATION {
|
2014-01-13 13:50:38 +01:00
|
|
|
alias YNH_WWW_ALIAS ;
|
|
|
|
if ($scheme = http) {
|
|
|
|
rewrite ^ https://$server_name$request_uri? permanent;
|
|
|
|
}
|
|
|
|
client_max_body_size 10G;
|
|
|
|
index index.php;
|
|
|
|
try_files $uri $uri/ index.php;
|
2016-01-15 09:47:27 +01:00
|
|
|
|
|
|
|
location ~ ^YNH_WWW_PATH/lib/functions.js.php {
|
|
|
|
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
|
|
|
fastcgi_pass unix:/var/run/php5-fpm-jirafeau.sock;
|
|
|
|
fastcgi_index index.php;
|
|
|
|
include fastcgi_params;
|
|
|
|
fastcgi_param REMOTE_USER $remote_user;
|
|
|
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
|
|
|
fastcgi_param SCRIPT_FILENAME $request_filename;
|
|
|
|
}
|
2014-12-11 23:41:05 +01:00
|
|
|
location ~ ^YNH_WWW_PATH/lib/.*\.php {
|
|
|
|
deny all;
|
|
|
|
}
|
2014-01-13 13:50:38 +01:00
|
|
|
location ~ [^/]\.php(/|$) {
|
|
|
|
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
|
|
|
fastcgi_pass unix:/var/run/php5-fpm-jirafeau.sock;
|
|
|
|
fastcgi_index index.php;
|
|
|
|
include fastcgi_params;
|
2015-01-19 08:24:34 +01:00
|
|
|
fastcgi_param REMOTE_USER $remote_user;
|
|
|
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
|
|
|
fastcgi_param SCRIPT_FILENAME $request_filename;
|
2014-01-13 13:50:38 +01:00
|
|
|
}
|
2015-08-09 11:09:33 +02:00
|
|
|
|
|
|
|
# Include SSOWAT user panel.
|
|
|
|
include conf.d/yunohost_panel.conf.inc;
|
2014-01-13 13:50:38 +01:00
|
|
|
}
|