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

32 lines
832 B
Nginx Configuration File
Raw Permalink Normal View History

2020-11-22 22:02:51 +01:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
2024-01-18 12:19:10 +01:00
# Path to source
alias __INSTALL_DIR__/;
2020-11-22 22:02:51 +01:00
2024-01-18 12:19:10 +01:00
index index.php;
2020-11-22 22:02:51 +01:00
2024-01-18 12:19:10 +01:00
try_files $uri $uri/ index.php;
location ~ [^/]\.php(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
fastcgi_pass unix:/var/run/php/php__PHPVERSION__-fpm-__NAME__.sock;
2021-07-21 14:21:17 +02:00
2024-01-18 12:19:10 +01: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;
}
2014-05-28 17:10:35 +02:00
2024-01-18 12:19:10 +01:00
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
2013-11-27 12:55:54 +01:00
}
2015-01-19 08:23:54 +01:00
2020-11-22 22:02:51 +01:00
location __PATH__/http-bind {
2024-01-18 12:19:10 +01:00
proxy_pass http://127.0.0.1:5290/http-bind;
proxy_set_header Host $host;
proxy_buffering off;
tcp_nodelay on;
access_log off;
2013-11-29 09:51:05 +01:00
}