VonUniGE
VonUniGE
My use case is to set up an IIIF server for multiple research groups. Each group should have its own prefix and its own naming scheme. The following keys are...
That could be a solution, but I can see at least two drawbacks: - Users are so used to the semantic of slashes in URLs, that they will complain and...
The [URI syntax section of the IIIF specification](https://iiif.io/api/image/2.1/#uri-syntax) says (emphasis is mine) that the prefix is: > The path on the host server to the service. This prefix is optional,...
@giancarlobi I plan to have about 10, maybe more different namespaces (or "services"). Running multiple instances of Cantaloupe is not an option. I can most probably find a solution by...
@adolski You are right, the gateway proxy is the right solution. Thank you for your work !
As a follow-up, here is the workaround I used: In my Apache configuration file: RewriteEngine on RewriteRule "^/iiif/2/(.+)/(.+)/(.+)/(.+)/(.+)/(.+)" "/iiif/2/$1\%2F$2/$3/$4/$5/$6" [PT] and in my delegates script: ``` def filesystemsource_pathname(options = {})...
As a workaround, you can use an Apache gateway proxy with: ``` Header unset "X-Powered-By" ```
These trailing spaces are also a problem for us. The auto-format tool of our IDE is removing them. This means that each first commit on a file with a license...
Ok, the source of the message is the official Docker documentation. But, I cannot find in the gosu repository the reasoning you mention. Can you make a citation with this...
Thank you for your answer. I understand that sudo is too heavy and complicated if the only goal is to drop privileges from root to a user. But if we...