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
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

21 行
557B

  1. server {
  2. listen 80;
  3. index index.php index.phtml index.html;
  4. server_name localhost;
  5. error_log /var/log/nginx/error.log;
  6. access_log /var/log/nginx/access.log;
  7. root /var/www/html/public;
  8. location ~ \.(php|phtml)$ {
  9. try_files $uri =404;
  10. fastcgi_split_path_info ^(.+\.php)(/.+)$;
  11. fastcgi_pass php:9000;
  12. fastcgi_index index.php;
  13. include fastcgi_params;
  14. fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  15. fastcgi_param PATH_INFO $fastcgi_path_info;
  16. }
  17. }