2020-11-22 22:02:51 +01:00
|
|
|
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
|
|
|
location __PATH__/ {
|
|
|
|
|
|
|
|
# Path to source
|
2024-01-07 13:10:56 +01:00
|
|
|
alias __INSTALL_DIR__/ ;
|
2020-11-22 22:02:51 +01:00
|
|
|
|
2013-11-29 09:51:05 +01:00
|
|
|
index index.php;
|
2020-11-22 22:02:51 +01:00
|
|
|
|
2013-11-27 12:55:54 +01:00
|
|
|
try_files $uri $uri/ index.php;
|
|
|
|
location ~ [^/]\.php(/|$) {
|
|
|
|
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
2021-07-21 14:21:17 +02:00
|
|
|
fastcgi_pass unix:/var/run/php/php__PHPVERSION__-fpm-__NAME__.sock;
|
|
|
|
|
2013-11-27 12:55:54 +01:00
|
|
|
fastcgi_index index.php;
|
|
|
|
include fastcgi_params;
|
2021-07-21 14:21:17 +02:00
|
|
|
fastcgi_param REMOTE_USER $remote_user;
|
|
|
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
2015-01-19 08:23:54 +01:00
|
|
|
fastcgi_param SCRIPT_FILENAME $request_filename;
|
2013-11-27 12:55:54 +01:00
|
|
|
}
|
2014-05-28 17:10:35 +02:00
|
|
|
|
|
|
|
# Include SSOWAT user panel.
|
|
|
|
include conf.d/yunohost_panel.conf.inc;
|
2013-11-27 12:55:54 +01:00
|
|
|
}
|
2015-01-19 08:23:54 +01:00
|
|
|
|
2020-11-22 22:02:51 +01:00
|
|
|
location __PATH__/http-bind {
|
2013-11-29 15:14:13 +01:00
|
|
|
if ($scheme = http) {
|
|
|
|
rewrite ^ https://$server_name$request_uri? permanent;
|
|
|
|
}
|
2020-11-22 22:02:51 +01:00
|
|
|
|
2013-11-29 09:51:05 +01:00
|
|
|
proxy_pass http://127.0.0.1:5290/http-bind;
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
proxy_buffering off;
|
|
|
|
tcp_nodelay on;
|
2013-11-29 09:52:44 +01:00
|
|
|
access_log off;
|
2013-11-29 09:51:05 +01:00
|
|
|
}
|