2018-11-27 17:09:29 +01:00
|
|
|
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
|
|
|
location __PATH__/ {
|
|
|
|
|
|
|
|
# Path to source
|
|
|
|
alias __FINALPATH__/ ;
|
|
|
|
|
|
|
|
# Force usage of https
|
|
|
|
if ($scheme = http) {
|
|
|
|
rewrite ^ https://$server_name$request_uri? permanent;
|
|
|
|
}
|
|
|
|
|
|
|
|
index index.php;
|
|
|
|
# Common parameter to increase upload size limit in conjunction with dedicated php-fpm file
|
|
|
|
#client_max_body_size 50M;
|
|
|
|
|
2018-11-28 23:16:31 +01:00
|
|
|
try_files "" @libreto;
|
2018-11-27 17:09:29 +01:00
|
|
|
|
2018-11-27 18:14:14 +01:00
|
|
|
location __PATH__/libreto/assets/ {
|
2018-11-27 17:09:29 +01:00
|
|
|
alias __FINALPATH__/libreto/assets/;
|
|
|
|
}
|
|
|
|
# Include SSOWAT user panel.
|
|
|
|
include conf.d/yunohost_panel.conf.inc;
|
|
|
|
}
|
2020-12-12 08:56:05 +01:00
|
|
|
|
2018-11-27 17:09:29 +01:00
|
|
|
location @libreto {
|
2020-12-12 08:56:05 +01:00
|
|
|
fastcgi_pass unix:/var/run/php__PHPVERSION__-fpm-__NAME__.sock;
|
2018-11-27 17:09:29 +01:00
|
|
|
|
|
|
|
fastcgi_index index.php;
|
|
|
|
include fastcgi_params;
|
|
|
|
fastcgi_param REMOTE_USER $remote_user;
|
|
|
|
fastcgi_param SCRIPT_FILENAME __FINALPATH__/index.php;
|
|
|
|
}
|