Skip to content

Commit

Permalink
* Added comments to fastcgi conf files. Also private files FCGI.
Browse files Browse the repository at this point in the history
  • Loading branch information
António P. P. Almeida committed Jun 28, 2011
1 parent ab38431 commit db17f7e
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 6 deletions.
7 changes: 3 additions & 4 deletions fastcgi.conf
Original file line number Original file line Diff line number Diff line change
@@ -1,12 +1,11 @@
#-*- mode: nginx; mode: flyspell-prog; ispell-local-dictionary: "american" -*- #-*- mode: nginx; mode: flyspell-prog; ispell-local-dictionary: "american" -*-
### fastcgi configuration. ### Generic fastcgi configuration.
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params; include fastcgi_params;
fastcgi_buffers 256 4k; fastcgi_buffers 256 4k;
fastcgi_intercept_errors on; fastcgi_intercept_errors on;
## allow 4 hrs - pass timeout responsibility to upstrea ## allow 4 hrs - pass timeout responsibility to upstream.
fastcgi_read_timeout 14400; fastcgi_read_timeout 14400;
fastcgi_index index.php; fastcgi_index index.php;
## Hide the X-Drupal-Cache header provided by Pressflow. ## Hide the X-Drupal-Cache header provided by Pressflow.
fastcgi_hide_header 'X-Drupal-Cache'; fastcgi_hide_header 'X-Drupal-Cache';
## Hide the Drupal 7 header X-Generator. ## Hide the Drupal 7 header X-Generator.
Expand Down
4 changes: 2 additions & 2 deletions fastcgi_params
Original file line number Original file line Diff line number Diff line change
@@ -1,4 +1,4 @@
# -*- mode: nginx; mode: flyspell-prog; ispell-local-dictionary: "american" -*- # -*- mode: conf; mode: flyspell-prog; ispell-local-dictionary: "american" -*-
### fastcgi parameters. ### fastcgi parameters.
fastcgi_param QUERY_STRING $query_string; fastcgi_param QUERY_STRING $query_string;
fastcgi_param REQUEST_METHOD $request_method; fastcgi_param REQUEST_METHOD $request_method;
Expand All @@ -20,5 +20,5 @@ fastcgi_param SERVER_ADDR $server_addr;
fastcgi_param SERVER_PORT $server_port; fastcgi_param SERVER_PORT $server_port;
fastcgi_param SERVER_NAME $server_name; fastcgi_param SERVER_NAME $server_name;


# PHP only, required if PHP was built with --enable-force-cgi-redirect ## PHP only, required if PHP was built with --enable-force-cgi-redirect
fastcgi_param REDIRECT_STATUS 200; fastcgi_param REDIRECT_STATUS 200;
35 changes: 35 additions & 0 deletions fastcgi_private_files.conf
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,35 @@
#-*- 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;
## 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';

0 comments on commit db17f7e

Please sign in to comment.