AAE-4262 fix docker redirect with relative url (#6426)

This commit is contained in:
Marcello Teodori
2020-12-05 12:11:05 +00:00
committed by GitHub
parent 577fa1b514
commit 164fa1840f
2 changed files with 9 additions and 5 deletions
+4 -2
View File
@@ -5,8 +5,10 @@ server {
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
root /usr/share/nginx/html;
rewrite ^([^.]*[^/])$ $1/ permanent;
root /usr/share/nginx/html;
rewrite ^([^.]*[^/])$ $1/ permanent;
absolute_redirect off;
location ${BASE_PATH} {
set $EVAL_BASE_PATH "${BASE_PATH}";