fix: add Nginx configuration, Vite setup, and API service client for the ORCID frontend integration

This commit is contained in:
Alexis
2026-05-15 10:21:20 +02:00
parent f6b63d147a
commit aacb8be09d
3 changed files with 10 additions and 3 deletions
+2 -2
View File
@@ -22,7 +22,7 @@ server {
# (acceso directo al puerto 8073 sin pasar por Apache).
location ^~ /flintstones/ {
rewrite ^/flintstones/(.*)$ /$1 break;
rewrite ^/flintstones/(.*)$ /$1 last;
try_files $uri $uri/ /index.html;
}
@@ -31,7 +31,7 @@ server {
}
location ^~ /orcid2sword/ {
rewrite ^/orcid2sword/(.*)$ /$1 break;
rewrite ^/orcid2sword/(.*)$ /$1 last;
try_files $uri $uri/ /index.html;
}