2015-08-03 11:35:01 +02:00
|
|
|
location PATHTOCHANGE {
|
|
|
|
alias ALIASTOCHANGE;
|
|
|
|
|
2015-08-03 12:05:52 +02:00
|
|
|
if ($scheme = http) {
|
|
|
|
rewrite ^ https://$server_name$request_uri? permanent;
|
|
|
|
}
|
2015-08-03 11:35:01 +02:00
|
|
|
|
2015-08-03 12:05:52 +02:00
|
|
|
index index.php;
|
|
|
|
try_files $uri $uri/ /index.php;
|
2015-08-03 11:35:01 +02:00
|
|
|
|
2015-08-03 12:05:52 +02:00
|
|
|
location ~ [^/]\.php(/|$) {
|
|
|
|
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
2015-08-21 18:00:34 +02:00
|
|
|
fastcgi_pass unix:/var/run/php5-fpm-movim.sock;
|
2015-08-03 12:05:52 +02:00
|
|
|
fastcgi_index index.php;
|
|
|
|
include fastcgi_params;
|
|
|
|
fastcgi_param REMOTE_USER $remote_user;
|
|
|
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
|
|
|
fastcgi_param SCRIPT_FILENAME $request_filename;
|
|
|
|
}
|
|
|
|
|
2015-08-03 15:56:52 +02:00
|
|
|
location ~ ^PATHTOCHANGE/ws/ {
|
2015-08-10 17:28:11 +02:00
|
|
|
proxy_pass http://localhost:YHPORT;
|
2015-08-03 11:35:01 +02:00
|
|
|
proxy_http_version 1.1;
|
|
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
|
|
proxy_set_header Connection "Upgrade";
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
proxy_set_header X-Forwarded-Proto https;
|
|
|
|
proxy_redirect off;
|
2015-11-13 13:39:39 +01:00
|
|
|
|
|
|
|
# To avoid disconnecting after 60sec :
|
|
|
|
proxy_read_timeout 14400s;
|
|
|
|
proxy_send_timeout 14400s;
|
|
|
|
# (14400s is 4h)
|
2015-08-03 11:35:01 +02:00
|
|
|
}
|
2015-08-03 12:05:52 +02:00
|
|
|
}
|
|
|
|
|
2015-08-21 18:41:50 +02:00
|
|
|
location ~ /\.ht {
|
|
|
|
deny all;
|
|
|
|
}
|
|
|
|
|
|
|
|
location ~ /(config|log)$ {
|
|
|
|
return 403;
|
|
|
|
}
|