summaryrefslogtreecommitdiff
path: root/etc/nginx/apps/drupal/fastcgi_no_args_drupal.conf
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-06-26 23:43:47 +0200
committerFlorian Dold <florian.dold@gmail.com>2019-06-26 23:43:47 +0200
commitbb0c5ae74bd80516b769c00c81bedf11a4d3e9ed (patch)
tree48e3900b4361ef67e7ff18292a1f2d7f50071997 /etc/nginx/apps/drupal/fastcgi_no_args_drupal.conf
parentfee9c9c5ee14babc680214efb65e187a8765b601 (diff)
downloaddeployment-bb0c5ae74bd80516b769c00c81bedf11a4d3e9ed.tar.gz
deployment-bb0c5ae74bd80516b769c00c81bedf11a4d3e9ed.tar.bz2
deployment-bb0c5ae74bd80516b769c00c81bedf11a4d3e9ed.zip
We have /etc in a separate repo for the server now.
Diffstat (limited to 'etc/nginx/apps/drupal/fastcgi_no_args_drupal.conf')
-rw-r--r--etc/nginx/apps/drupal/fastcgi_no_args_drupal.conf43
1 files changed, 0 insertions, 43 deletions
diff --git a/etc/nginx/apps/drupal/fastcgi_no_args_drupal.conf b/etc/nginx/apps/drupal/fastcgi_no_args_drupal.conf
deleted file mode 100644
index 683e4ce..0000000
--- a/etc/nginx/apps/drupal/fastcgi_no_args_drupal.conf
+++ /dev/null
@@ -1,43 +0,0 @@
-#-*- mode: nginx; mode: flyspell-prog; ispell-local-dictionary: "american" -*-
-### fastcgi configuration for serving private files.
-## 1. Parameters.
-fastcgi_param QUERY_STRING q=$uri;
-fastcgi_param REQUEST_METHOD $request_method;
-fastcgi_param CONTENT_TYPE $content_type;
-fastcgi_param CONTENT_LENGTH $content_length;
-
-fastcgi_param SCRIPT_NAME /index.php;
-fastcgi_param REQUEST_URI $request_uri;
-fastcgi_param DOCUMENT_URI $document_uri;
-fastcgi_param DOCUMENT_ROOT $document_root;
-fastcgi_param SERVER_PROTOCOL $server_protocol;
-
-fastcgi_param GATEWAY_INTERFACE CGI/1.1;
-fastcgi_param SERVER_SOFTWARE nginx/$nginx_version;
-
-fastcgi_param REMOTE_ADDR $remote_addr;
-fastcgi_param REMOTE_PORT $remote_port;
-fastcgi_param SERVER_ADDR $server_addr;
-fastcgi_param SERVER_PORT $server_port;
-fastcgi_param SERVER_NAME $server_name;
-## PHP only, required if PHP was built with --enable-force-cgi-redirect
-fastcgi_param REDIRECT_STATUS 200;
-fastcgi_param SCRIPT_FILENAME $document_root/index.php;
-## HTTPS 'on' parameter. This requires Nginx version 1.1.11 or
-## later. The if_not_empty flag was introduced in 1.1.11. See:
-## http://nginx.org/en/CHANGES. If using a version that doesn't
-## support this comment out the line below.
-fastcgi_param HTTPS $fastcgi_https if_not_empty;
-## For Nginx versions below 1.1.11 uncomment the line below after commenting out the above.
-#fastcgi_param HTTPS $fastcgi_https;
-
-## 2. Nginx FCGI specific directives.
-fastcgi_buffers 256 4k;
-fastcgi_intercept_errors on;
-## Allow 4 hrs - pass timeout responsibility to upstream.
-fastcgi_read_timeout 14400;
-fastcgi_index index.php;
-## Hide the X-Drupal-Cache header provided by Pressflow.
-fastcgi_hide_header 'X-Drupal-Cache';
-## Hide the Drupal 7 header X-Generator.
-fastcgi_hide_header 'X-Generator';