Skip to content

ISE-FIZKarlsruhe/iconclass

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 

Repository files navigation

ICONCLASS Projects

Various projects done by the ISE group related to ICONCLASS

  • Multimodal Search paper submission, January 2023

Platform notes

The following setting is used on the demo nginx container to proxy all iconclass requests.

server {
  listen 80 ;
  server_name demo.fiz-karlsruhe.de;
  root /var/www/html;
  location /iconclass {
    allow  all;
    proxy_redirect     off;
    proxy_set_header    Host      $host;
    proxy_set_header    X-Real-IP    $remote_addr;
    proxy_set_header    X-Forwarded-For $proxy_add_x_forwarded_for;
    client_max_body_size  500m;
    client_body_buffer_size 128k;
    proxy_connect_timeout  90;
    proxy_send_timeout   600;
    proxy_read_timeout   600;
    proxy_buffers      32 4k;
    proxy_pass http://ic_multimodal/iconclass;
  }

About

ICONCLASS projects

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors