0👍
The bug was in nginx location
instead
rewrite /auth/(.*) /$1 break;
I have
rewrite /(.*) /$1 break;
and routing is now working
Source:stackexchange.com
0👍
The bug was in nginx location
instead
rewrite /auth/(.*) /$1 break;
I have
rewrite /(.*) /$1 break;
and routing is now working