aileftech / snap-admin

A plug-and-play, auto-generated CRUD database admin panel for Spring Boot apps
MIT License
251 stars 18 forks source link

When used with a path in a reverse proxy static resources cannot be loaded #19

Closed fabienfleureau closed 10 months ago

fabienfleureau commented 10 months ago

Describe the bug dbadmin page is accessible at this public url https://example.com/dbadmin in a private network it is hosted on https://private_domain.com/dbadmin there a reverse proxy mapping /dbadmin path to private_domain/dbadmin In this case only the dynamic resources are accessible but not static ones. Indeed it's trying to load script like this one https://example.com/js/table.js which is not accessible as only dbadmin is mapped with the reverse proxy.

This is PR trying to fix with a configuration properties: https://github.com/aileftech/spring-boot-database-admin/pull/15

But it can be solved also by reusing by default dbadmin_baseUrl on static resources.

aileftech commented 10 months ago

I've pushed two commits (31200ad64f5d8f7e682a0fbfe915b541ee807b8e, ec7eac3c12dd60b67d6cd4b095cc7fe28db70dde) to the dev branch which should fix this. I haven't replicated the full setup with the reverse proxy, but I've verified that static resources are now served under /${dbadmin_baseUrl} and referenced as such in the HTML template.

Can you try by any chance or look at the two commits? I believe this is correct.

fabienfleureau commented 10 months ago

seems good, thank you :+1: