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

41 lines
934 B
Nginx Configuration File
Raw Normal View History

2019-03-03 18:12:41 +01:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
2019-03-03 18:12:41 +01:00
# 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;
}
2019-03-03 18:12:41 +01:00
# show YunoHost panel access
include conf.d/yunohost_panel.conf.inc;
}
# prevent useless logs
2017-06-02 17:15:57 +02:00
location __PATH__/favicon.ico {
access_log off;
log_not_found off;
}
# deny access to sensitive files
2017-06-02 17:15:57 +02:00
location ~ ^__PATH__/(config|temp|logs)/ {
deny all;
}
2017-06-02 17:15:57 +02:00
location ~ ^__PATH__/(.+/|)\. {
deny all;
}