Skip to content

Commit f8f7e79

Browse files
author
António P. P. Almeida
committed
* Removed images from gzip_types. Added reverse proxy setup. PHP uses
upstream now.
1 parent 1703616 commit f8f7e79

6 files changed

+77
-5
lines changed

README.md

+29-1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@
4040
6. [Upload Progress](http://wiki.nginx.org/NginxHttpUploadProgressModule
4141
"Upload progress Nginx module") support.
4242

43+
7. Possibility of using **Apache** as a backend for dealing with
44+
PHP. Meaning using Nginx as
45+
[reverse proxy](http://wiki.nginx.org/HttpProxyModule "Nginx Proxy Module").
4346

4447
## Basic Auth for access to restricted files like install.php
4548

@@ -75,6 +78,15 @@
7578
Of course you can rename the password file to whatever you want,
7679
then accordingly change its name in the virtual host config
7780
file, `example.com`.
81+
82+
## Nginx as a Reverse Proxy: Proxying to Apache for PHP
83+
84+
If you **absolutely need** to use the rather _bad habit_ of
85+
deploying web apps relying on `.htaccess`, or you just want to use
86+
Nginx as a reverse proxy. The config allows you to do so. Note that
87+
this provides some benefits over using only Apache, since Nginx is
88+
much faster than Apache. Furthermore you can use the proxy cache
89+
and/or use Nginx as a load balancer.
7890

7991
## Installation
8092

@@ -90,7 +102,23 @@
90102

91103
4. Setup the PHP handling method. It can be:
92104

93-
+ Upstream HTTP server like Apache with mod_php
105+
+ Upstream HTTP server like Apache with mod_php. To use this
106+
method comment out the `include upstream_phpcgi.conf;`
107+
line in `nginx.conf` and uncomment the lines:
108+
109+
include reverse_proxy.conf;
110+
include upstream_phpapache.conf;
111+
112+
Now you must set the proper address and port for your
113+
backend(s) in the `upstream_phpapache.conf`. By default it
114+
assumes the loopback `127.0.0.1` interface on port
115+
`8080`. Adjust accordingly to reflect your setup.
116+
117+
Comment out **all** `fastcgi_pass` directives in either
118+
`drupal_boost.conf` or `drupal_boost_drush.conf`, depending
119+
which config layout you're using. Uncomment out all the
120+
`proxy_pass` directives. They have a comment around them,
121+
stating these instructions.
94122

95123
+ FastCGI process using php-cgi. In this case an
96124
[init script](https://github.com/perusio/php-fastcgi-debian-script

nginx.conf

+20-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- mode: conf; mode: flyspell-prog; mode: autopair; ispell-local-dictionary: "american" -*-
1+
# -*- mode: nginx; mode: flyspell-prog; mode: autopair; ispell-local-dictionary: "american" -*-
22
user www-data;
33
worker_processes 4;
44

@@ -49,6 +49,9 @@ http {
4949

5050
## Reset lingering timed out connections. Deflect DDoS.
5151
reset_timedout_connection on;
52+
53+
## Body size.
54+
client_max_body_size 10m;
5255

5356
## TCP options.
5457
tcp_nodelay on;
@@ -60,7 +63,7 @@ http {
6063
gzip_comp_level 1;
6164
gzip_http_version 1.1;
6265
gzip_min_length 10;
63-
gzip_types text/plain text/css image/png image/gif image/jpeg application/x-javascript text/xml application/xml application/xml+rss text/javascript image/x-icon application/vnd.ms-fontobject font/opentype application/x-font-ttf;
66+
gzip_types text/plain text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript image/x-icon application/vnd.ms-fontobject font/opentype application/x-font-ttf;
6467
gzip_vary on;
6568
gzip_proxied any; # Compression for all requests.
6669
## No need for regexps. See
@@ -74,6 +77,13 @@ http {
7477
## Hide the Nginx version number.
7578
server_tokens off;
7679

80+
## Use a SSL/TLS cache for SSL session resume. This needs to be
81+
## here (in this context, for session resumption to work. See this
82+
## thread on the Nginx mailing list:
83+
## http://nginx.org/pipermail/nginx/2010-November/023736.html.
84+
ssl_session_cache shared:SSL:10m;
85+
ssl_session_timeout 10m;
86+
7787
## For the filefield_nginx_progress module to work. From the
7888
## README. Reserve 1MB under the name 'uploads' to track uploads.
7989
upload_progress uploads 1m;
@@ -83,6 +93,14 @@ http {
8393
## https://developer.mozilla.org/en/The_X-FRAME-OPTIONS_response_header
8494
add_header X-Frame-Options sameorigin;
8595

96+
## Include the upstream servers for PHP FastCGI handling config.
97+
include upstream_phpcgi.conf;
98+
99+
## Include the upstream servers for Apache handling the PHP
100+
## processes. In this case Nginx functions as a reverse proxy.
101+
#include reverse_proxy.conf;
102+
#include upstream_phpapache.conf;
103+
86104
## Include all vhosts.
87105
include /etc/nginx/sites-enabled/*;
88106
}

reverse_proxy.conf

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# -*- mode: nginx; mode: flyspell-prog; mode: autopair; ispell-local-dictionary: "american" -*-
2+
3+
### Configuration for reverse proxy. Passing the necessary headers to
4+
### the backend. Nginx doesn't tunnel the connection, it opens a new
5+
### one. Hence whe need to send these headers to the backend so that
6+
### the client(s) IP is available to them. The host is also sent.
7+
8+
proxy_set_header X-Real-IP $remote_addr;
9+
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
10+
proxy_set_header Host $http_host;

sites-available/example.com

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ server {
104104
fastcgi_param PATH_INFO $path_info;
105105
## Passing the request upstream to the FastCGI
106106
## listener.
107-
fastcgi_pass unix:/tmp/php-cgi/php-cgi.socket;
107+
fastcgi_pass phpcgi;
108108
}
109109

110110
## Regular PHP processing.
@@ -118,7 +118,7 @@ server {
118118
fastcgi_param PATH_INFO $path_info;
119119
## Passing the request upstream to the FastCGI
120120
## listener.
121-
fastcgi_pass unix:/tmp/php-cgi/php-cgi.socket;
121+
fastcgi_pass phpcgi;
122122
## Upload progress support.
123123
track_uploads uploads 60s;
124124
}

upstream_phpapache.conf

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# -*- mode: nginx; mode: flyspell-prog; mode: autopair; ispell-local-dictionary: "american" -*-
2+
3+
### Upstream configuration for Apache functioning has a PHP handler.
4+
5+
## Add as many servers as needed. Cf. http://wiki.nginx.org/HttpUpstreamModule.
6+
upstream phpapache {
7+
server 127.0.0.1:8080;
8+
}

upstream_phpcgi.conf

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# -*- mode: nginx; mode: flyspell-prog; mode: autopair; ispell-local-dictionary: "american" -*-
2+
3+
### Upstream configuration for PHP FastCGI.
4+
5+
## Add as many servers as needed. Cf. http://wiki.nginx.org/HttpUpstreamModule.
6+
upstream phpcgi {
7+
server unix:/tmp/php-cgi/php-cgi.socket;
8+
}

0 commit comments

Comments
 (0)