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

30 lines
728 B
Nginx Configuration File
Raw Normal View History

2020-03-24 22:00:45 +01:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
2018-06-25 05:57:41 +02:00
# Path to source
alias __INSTALL_DIR__/;
2020-11-24 23:40:11 +01:00
index index.php;
2020-12-01 12:14:47 +01:00
if (!-f $request_filename) {
rewrite ^ __PATH__/index.php last;
}
2020-12-02 09:18:40 +01:00
client_max_body_size 50M;
try_files $uri $uri/ index.php$is_args$args;
2013-12-19 03:02:51 +01:00
location ~ [^/]\.php(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
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;
2020-11-24 23:40:11 +01:00
fastcgi_param SCRIPT_FILENAME $request_filename;
2013-12-19 03:02:51 +01:00
}
2014-05-29 15:30:21 +02:00
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
2013-12-19 03:02:51 +01:00
}