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
Jérôme Lebleu eb43d2e8c5 [enh] Initial commit for new app based on Kloadut/roundcube_ynh
Since sources where included in the last YunoHost app package, this
rebase is intended to have a lighter git repository.
2016-05-19 19:49:47 +02:00

40 lines
917 B
Nginx Configuration File
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

location #PATH# {
alias #DESTDIR#;
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
}
index index.php;
client_max_body_size 10G;
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/php5-fpm-roundcube.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;
}