2014-04-08 22:31:19 +02:00
|
|
|
location PATHTOCHANGE {
|
2014-04-08 20:17:14 +02:00
|
|
|
alias ALIASTOCHANGE ;
|
2013-11-29 15:14:13 +01:00
|
|
|
if ($scheme = http) {
|
|
|
|
rewrite ^ https://$server_name$request_uri? permanent;
|
|
|
|
}
|
2013-11-29 09:51:05 +01:00
|
|
|
index index.php;
|
2013-11-27 12:55:54 +01:00
|
|
|
try_files $uri $uri/ index.php;
|
|
|
|
location ~ [^/]\.php(/|$) {
|
|
|
|
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
|
|
|
fastcgi_pass unix:/var/run/php5-fpm.sock;
|
|
|
|
fastcgi_index index.php;
|
|
|
|
include fastcgi_params;
|
|
|
|
fastcgi_param REMOTE_USER $remote_user;
|
|
|
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
|
|
|
}
|
|
|
|
}
|
2013-12-09 16:45:28 +01:00
|
|
|
location PATHTOCHANGE2/http-bind {
|
2013-11-29 15:14:13 +01:00
|
|
|
if ($scheme = http) {
|
|
|
|
rewrite ^ https://$server_name$request_uri? permanent;
|
|
|
|
}
|
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
|
|
|
}
|