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

35 lines
1 KiB
Nginx Configuration File
Raw Normal View History

location YNH_WWW_LOCATION {
2014-01-13 13:50:38 +01:00
alias YNH_WWW_ALIAS ;
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
}
client_max_body_size 10G;
index index.php;
try_files $uri $uri/ index.php;
location ~ ^YNH_WWW_PATH/lib/functions.js.php {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
fastcgi_pass unix:/var/run/php5-fpm-jirafeau.sock;
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-12-11 23:41:05 +01:00
location ~ ^YNH_WWW_PATH/lib/.*\.php {
deny all;
}
2014-01-13 13:50:38 +01:00
location ~ [^/]\.php(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
fastcgi_pass unix:/var/run/php5-fpm-jirafeau.sock;
fastcgi_index index.php;
include fastcgi_params;
2015-01-19 08:24:34 +01:00
fastcgi_param REMOTE_USER $remote_user;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param SCRIPT_FILENAME $request_filename;
2014-01-13 13:50:38 +01:00
}
2015-08-09 11:09:33 +02:00
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
2014-01-13 13:50:38 +01:00
}