mirror of
https://github.com/YunoHost-Apps/roundcube_ynh.git
synced 2024-09-03 20:16:28 +02:00
41 lines
917 B
Nginx Configuration File
41 lines
917 B
Nginx Configuration File
|
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;
|
|||
|
}
|