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

27 lines
782 B
Nginx Configuration File
Raw Permalink Normal View History

2022-03-09 03:00:02 +01:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
2017-10-23 12:41:33 +02:00
2024-01-16 22:52:20 +01:00
# Path to source
2024-01-17 09:26:04 +01:00
alias __INSTALL_DIR__/;
2022-03-09 03:00:02 +01:00
2024-01-16 22:52:20 +01:00
index index.php;
2022-03-09 03:00:02 +01:00
2024-01-16 22:52:20 +01:00
# Common parameter to increase upload size limit in conjunction with dedicated php-fpm file
2024-01-17 09:26:04 +01:00
client_max_body_size 1000M;
2022-03-09 03:00:02 +01:00
2024-01-16 22:52:20 +01:00
try_files $uri $uri/ index.php;
location ~ [^/]\.php(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
fastcgi_pass unix:/var/run/php/php__PHPVERSION__-fpm-__NAME__.sock;
2017-10-23 12:41:33 +02:00
2024-01-16 22:52:20 +01:00
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;
}
2022-03-09 03:00:02 +01:00
2024-01-16 22:52:20 +01:00
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
2017-02-13 22:40:12 +01:00
}