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

30 lines
782 B
Nginx Configuration File
Raw Normal View History

2020-07-18 20:47:14 +02:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
2020-07-18 20:31:39 +02:00
location __PATH__/ {
2015-04-06 17:46:57 +02:00
2020-07-18 20:47:14 +02:00
# Path to source
alias __FINALPATH__/ ;
# Force usage of https
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
}
2020-07-26 19:52:53 +02:00
index index.html index.php;
2020-07-18 20:47:14 +02:00
# Common parameter to increase upload size limit in conjunction with dedicated php-fpm file
2020-07-26 19:52:00 +02:00
client_max_body_size 50M;
2015-04-06 17:46:57 +02:00
try_files $uri $uri/ index.php;
location ~ [^/]\.php(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
2020-09-25 15:57:18 +02:00
fastcgi_pass unix:/var/run/php/php__PHPVERSION__-fpm-__NAME__.sock;
2020-07-18 20:47:14 +02:00
2015-04-06 17:46:57 +02:00
fastcgi_index index.php;
include fastcgi_params;
2020-07-18 20:47:14 +02:00
fastcgi_param REMOTE_USER $remote_user;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param SCRIPT_FILENAME $request_filename;
2015-04-06 17:46:57 +02:00
}
}
2020-07-18 20:47:14 +02:00