mirror of
https://github.com/YunoHost-Apps/selfoss_ynh.git
synced 2024-09-03 20:16:21 +02:00
move selfoss to sublocation /selfoss
This commit is contained in:
parent
4c9879e42b
commit
04c67cd403
1 changed files with 20 additions and 14 deletions
|
@ -1,28 +1,34 @@
|
|||
location / {
|
||||
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
||||
location /selfoss {
|
||||
|
||||
# Path to source
|
||||
alias __FINALPATH__/;
|
||||
|
||||
index index.php;
|
||||
|
||||
try_files $uri /public/$uri /index.php;
|
||||
root __FINALPATH__/;
|
||||
access_log /var/log/nginx/rss.access.log;
|
||||
error_log /var/log/nginx/rss.error.log;
|
||||
|
||||
#index index.php;
|
||||
#try_files $uri /public/$uri /index.php;
|
||||
|
||||
location ~ [^/]\.php(/|$) {
|
||||
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
||||
fastcgi_pass unix:/var/run/php/php__PHPVERSION__-fpm-__NAME__.sock;
|
||||
|
||||
fastcgi_index index.php;
|
||||
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
||||
|
||||
include fastcgi_params;
|
||||
fastcgi_param REMOTE_USER $remote_user;
|
||||
fastcgi_param PATH_INFO $fastcgi_path_info;
|
||||
fastcgi_param SCRIPT_FILENAME $request_filename;
|
||||
}
|
||||
|
||||
location ~ ^/(favicons|thumbnails)/.*$ {
|
||||
try_files $uri /data/$uri;
|
||||
}
|
||||
location ~ ^/selfoss/((favicons|thumbnails)/.+)$ {
|
||||
try_files /selfoss/data/$1 =404;
|
||||
}
|
||||
|
||||
location ~* ^/(data\/logs|data\/sqlite|config\.ini|\.ht) {
|
||||
deny all;
|
||||
}
|
||||
location ~ ^/selfoss/$ {
|
||||
index index.php;
|
||||
}
|
||||
|
||||
location ~ ^/selfoss/(.+)$ {
|
||||
try_files /selfoss/public/$1 /selfoss/index.php$is_args$args;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue