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
Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- server {
-
- listen 80;
- index index.php;
- server_name localhost;
- root /var/www/html/public;
- error_log /var/log/nginx/project_error.log;
- access_log /var/log/nginx/project_access.log;
-
- location / {
- try_files $uri /index.php$is_args$args;
- }
-
- location ~ ^/index\\.php(/|$) {
- fastcgi_pass php:9000;
- fastcgi_split_path_info ^(.+\\.php)(/.*)$;
- include fastcgi_params;
-
- fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
- fastcgi_param DOCUMENT_ROOT $realpath_root;
-
- fastcgi_buffer_size 128k;
- fastcgi_buffers 4 256k;
- fastcgi_busy_buffers_size 256k;
-
- internal;
- }
-
- location ~ \\.php$ {
- return 404;
- }
-
- }
|