A search interface for data from the Politics of Patents case study (part of Copim WP6): this parses data from the archive of RTF files and provides additional data from the European Patent Office API. https://patents.copim.ac.uk
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

34 lines
739B

  1. server {
  2. listen 80;
  3. index index.php;
  4. server_name localhost;
  5. root /var/www/html/public;
  6. error_log /var/log/nginx/project_error.log;
  7. access_log /var/log/nginx/project_access.log;
  8. location / {
  9. try_files $uri /index.php$is_args$args;
  10. }
  11. location ~ ^/index\\.php(/|$) {
  12. fastcgi_pass php:9000;
  13. fastcgi_split_path_info ^(.+\\.php)(/.*)$;
  14. include fastcgi_params;
  15. fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
  16. fastcgi_param DOCUMENT_ROOT $realpath_root;
  17. fastcgi_buffer_size 128k;
  18. fastcgi_buffers 4 256k;
  19. fastcgi_busy_buffers_size 256k;
  20. internal;
  21. }
  22. location ~ \\.php$ {
  23. return 404;
  24. }
  25. }