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文字以内のものにしてください。

20 行
552B

  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. }