1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/rainloop_ynh.git synced 2024-09-03 20:16:18 +02:00
rainloop_ynh/conf/nginx.conf

36 lines
842 B
Nginx Configuration File
Raw Normal View History

2019-02-25 19:36:03 +01:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
# Path to source
2017-10-08 19:03:08 +02:00
alias __FINALPATH__/;
2015-04-13 16:42:27 +02:00
2019-02-25 19:36:03 +01:00
# Force usage of https
2015-04-13 16:42:27 +02:00
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
2015-04-13 16:42:27 +02:00
}
2017-10-08 19:03:08 +02:00
location ^~ __PATH__/app/data {
deny all;
}
2017-10-08 19:03:08 +02:00
location ^~ __PATH__/pgpback/keys {
deny all;
}
2015-04-13 16:42:27 +02:00
client_max_body_size 10G;
index index.php index.html;
2015-04-13 16:42:27 +02:00
try_files $uri $uri/ index.php;
location ~ [^/]\.php(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
2020-09-03 15:55:26 +02:00
fastcgi_pass unix:/var/run/php/php__PHPVERSION__-fpm-__NAME__.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param REMOTE_USER $remote_user;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param SCRIPT_FILENAME $request_filename;
}
2015-04-13 16:42:27 +02:00
2017-10-08 19:03:08 +02:00
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}