2018-06-25 05:57:41 +02:00
|
|
|
location __PATH__ {
|
|
|
|
|
|
|
|
# Path to source
|
|
|
|
alias __FINALPATH__/ ;
|
|
|
|
|
2013-12-19 03:02:51 +01:00
|
|
|
if ($scheme = http) {
|
|
|
|
rewrite ^ https://$server_name$request_uri? permanent;
|
|
|
|
}
|
2018-06-25 05:57:41 +02:00
|
|
|
|
|
|
|
# Example PHP configuration (remove if not used)
|
2013-12-19 03:02:51 +01:00
|
|
|
index index.php;
|
|
|
|
try_files $uri $uri/ index.php;
|
2019-04-05 13:50:46 +02:00
|
|
|
client_max_body_size 50M;
|
2013-12-19 03:02:51 +01:00
|
|
|
location ~ [^/]\.php(/|$) {
|
|
|
|
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
2019-04-05 13:29:28 +02:00
|
|
|
fastcgi_pass unix:/var/run/php/php7.0-fpm-__NAME__.sock;
|
2013-12-19 03:02:51 +01:00
|
|
|
fastcgi_index index.php;
|
|
|
|
include fastcgi_params;
|
2015-12-15 23:06:09 +01:00
|
|
|
fastcgi_param REMOTE_USER $remote_user;
|
|
|
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
2015-12-15 23:05:54 +01:00
|
|
|
fastcgi_param SCRIPT_FILENAME $request_filename;
|
2013-12-19 03:02:51 +01:00
|
|
|
}
|
2014-05-29 15:30:21 +02:00
|
|
|
|
|
|
|
# Include SSOWAT user panel.
|
|
|
|
include conf.d/yunohost_panel.conf.inc;
|
2013-12-19 03:02:51 +01:00
|
|
|
}
|