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

46 lines
1.3 KiB
Nginx Configuration File
Raw Normal View History

2018-05-05 17:03:04 +02:00
location __PATH__ {
2016-09-18 11:03:26 +02:00
# Path to source
2018-05-05 17:03:04 +02:00
alias __FINALPATH__/ ;
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
}
2016-09-18 11:03:26 +02:00
# Example PHP configuration (remove if not used)
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)(/.*)$;
2018-05-05 17:03:04 +02:00
fastcgi_pass unix:/var/run/php5-fpm-__NAME__.sock;
# If you don't use a dedicated fpm config for your app,
# use a general fpm pool.
2016-09-18 11:03:26 +02:00
# This is to be used INSTEAD of line above
# Don't forget to adjust scripts install/upgrade/remove/backup accordingly
#
2018-05-05 17:03:04 +02:00
#fastcgi_pass unix:/var/run/php5-fpm.sock;
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;
}
2018-05-05 17:03:04 +02:00
# PHP configuration end
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;
}