2014-06-15 22:43:38 +02:00
|
|
|
location PATHTOCHANGE {
|
2014-06-13 17:53:15 +02:00
|
|
|
alias ALIASTOCHANGE;
|
2014-06-15 22:43:38 +02:00
|
|
|
proxy_pass http://127.0.0.1:9091PATHTOCHANGE/admin
|
|
|
|
;
|
2014-06-15 22:36:13 +02:00
|
|
|
if ($scheme = http) {
|
|
|
|
rewrite ^ https://$server_name$request_uri? permanent;
|
|
|
|
}
|
2014-06-15 22:22:17 +02:00
|
|
|
|
2014-06-13 15:06:28 +02:00
|
|
|
index index.php index.html index.htm;
|
|
|
|
default_type text/html;
|
2014-06-15 22:36:13 +02:00
|
|
|
|
2014-06-13 07:30:00 +02:00
|
|
|
location ~ [^/]\.php(/|$) {
|
|
|
|
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
|
|
|
fastcgi_pass unix:/var/run/php5-fpm.sock;
|
|
|
|
fastcgi_index index.php;
|
|
|
|
include fastcgi_params;
|
2014-06-13 15:06:28 +02:00
|
|
|
fastcgi_param REMOTE_USER $remote_user;
|
|
|
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
2014-06-13 07:30:00 +02:00
|
|
|
}
|
|
|
|
|
2014-06-13 15:06:28 +02:00
|
|
|
|
2014-06-13 07:30:00 +02:00
|
|
|
# Include SSOWAT user panel.
|
|
|
|
include conf.d/yunohost_panel.conf.inc;
|
2014-06-13 15:06:28 +02:00
|
|
|
}
|