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

40 lines
1.1 KiB
Nginx Configuration File
Raw Normal View History

2018-07-31 00:16:42 +02:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
2016-09-18 11:03:26 +02:00
# Path to source
2018-05-05 17:03:04 +02:00
alias __FINALPATH__/ ;
2018-07-31 00:16:42 +02:00
# Force usage of https
2018-05-05 17:03:04 +02:00
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
}
2016-09-18 11:03:26 +02:00
index index.php;
# Common parameter to increase upload size limit in conjuction with dedicated php-fpm file
#client_max_body_size 50M;
try_files $uri $uri/ index.php;
location ~ [^/]\.php(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
2021-07-19 09:44:10 +02:00
fastcgi_pass unix:/var/run/php__PHPVERSION__-fpm-__NAME__.sock;
2018-05-05 17:03:04 +02:00
2016-09-18 11:03:26 +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;
}
2021-07-19 09:44:10 +02:00
2016-09-18 11:03:26 +02:00
# Very important security restriction
2018-05-05 17:03:04 +02:00
# See https://forum.cheky.net/information-sur-message-avertissement-securite-t553-p1.html#p2127
location __PATH__/var {
2018-05-05 17:03:04 +02:00
deny all;
#return 403 # Cannot pass 'install' with 'package_check' if this line is present
2018-05-05 17:03:04 +02:00
}
2016-09-18 11:03:26 +02:00
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}