1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/jappix_ynh.git synced 2024-09-03 19:26:19 +02:00
jappix_ynh/conf/nginx.conf

21 lines
556 B
Nginx Configuration File
Raw Normal View History

2013-11-27 12:55:54 +01:00
location PATHTOCHANGE {
alias ALIASTOCHANGE ;
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-11-29 12:59:35 +01:00
location PATHTOCHANGE/http-bind {
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
}