2014-06-15 22:43:38 +02:00
|
|
|
location PATHTOCHANGE {
|
2014-06-13 17:53:15 +02:00
|
|
|
alias ALIASTOCHANGE;
|
2014-06-15 22:45:03 +02:00
|
|
|
|
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-16 07:17:11 +02:00
|
|
|
rewrite ^ http://DOMAINNAMEPATHTOCHANGE/admin/ redirect;
|
2014-06-16 07:04:39 +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-16 07:15:39 +02:00
|
|
|
location PATHTOCHANGEadmin/ {
|
2014-06-16 07:14:00 +02:00
|
|
|
index index.php;
|
2014-06-16 07:10:28 +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
|
|
|
}
|