1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/roundcube_ynh.git synced 2024-09-03 20:16:28 +02:00
roundcube_ynh/conf/nginx.conf
Éric Gaspar 272198d161
bullseye (#149)
* bullseye

* Auto-update README

* Update app.src

* set max filesize

* Fix

Co-authored-by: yunohost-bot <yunohost@yunohost.org>
2022-08-14 19:58:24 +02:00

40 lines
934 B
Nginx Configuration File

#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
# Path to source
alias __FINALPATH__/ ;
index index.php;
client_max_body_size 50M;
try_files $uri $uri/ /index.php?q=$uri&$args;
# pass PHP scripts to FastCGI server
location ~ [^/]\.php(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
fastcgi_pass unix:/var/run/php/php__PHPVERSION__-fpm-__NAME__.sock;
fastcgi_index index.php;
fastcgi_param REMOTE_USER $remote_user;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param SCRIPT_FILENAME $request_filename;
include fastcgi_params;
}
# show YunoHost panel access
include conf.d/yunohost_panel.conf.inc;
}
# prevent useless logs
location __PATH__/favicon.ico {
access_log off;
log_not_found off;
}
# deny access to sensitive files
location ~ ^__PATH__/(config|temp|logs)/ {
deny all;
}
location ~ ^__PATH__/(.+/|)\. {
deny all;
}