mirror of
https://github.com/YunoHost-Apps/agendav_ynh.git
synced 2024-09-03 20:36:12 +02:00
Besides the AgenDAV upgrade, it improves the packaging - only the install and remove scripts yet - with the following: * download and check sources, and apply a patch to modify them * add a specific PHP FPM pool for AgenDAV * allow to select AgenDAV default language * allow to extend AgenDAV configuration in a local.php file
32 lines
968 B
Nginx Configuration File
32 lines
968 B
Nginx Configuration File
location {PATH}/ {
|
|
alias {DESTDIR}/web/public/;
|
|
index index.php;
|
|
|
|
if ($scheme = http) {
|
|
rewrite ^ https://$server_name$request_uri? permanent;
|
|
}
|
|
|
|
# The seemingly weird syntax is due to a long-standing bug in nginx,
|
|
# see: https://trac.nginx.org/nginx/ticket/97
|
|
try_files $uri $uri/ {PATH}/{PATH}/index.php$is_args$args;
|
|
|
|
location ~ ^{PATH}/index\.php(/|$) {
|
|
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
|
fastcgi_pass unix:/var/run/php5-fpm-agendav.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;
|
|
}
|
|
|
|
location ~ \.php$ {
|
|
return 404;
|
|
}
|
|
|
|
# Include SSOWAT user panel.
|
|
include conf.d/yunohost_panel.conf.inc;
|
|
}
|
|
|
|
# append trailing slash in case of a subpath
|
|
location = {LOCATION} { return 302 {PATH}/; }
|