Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

D7 custom - decoupled upstreams & limit_zones #203

Closed
wants to merge 22 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
2d0614c
Initial attempt at reingeneering config
arielsalvo Dec 23, 2014
3eaf12a
Updated upstream checks
arielsalvo Dec 27, 2014
28fe571
Adding facility to block IP addresses and splitting limit zones from …
arielsalvo Dec 29, 2014
a42fd65
Cleanup of vHosts and minor typo
arielsalvo Dec 29, 2014
b10b015
Updating upstream config samples
arielsalvo Dec 29, 2014
2ce3af6
Fixing typo in drupal.conf
arielsalvo Jan 8, 2015
362107d
Fixing typo in example vHost
arielsalvo Jan 8, 2015
205286b
Ignoring local configs, reworking upstream backends & status pages
arielsalvo Jan 9, 2015
c427d72
Fixing samples for phpcgi_unix upstream and checks
arielsalvo Jan 9, 2015
d303d5b
Adding mobile device detection and using it as part of the Cache Key
arielsalvo Jan 9, 2015
81a9abc
Adding READMEs, updating gitignore and renaming sample vhost
arielsalvo Jan 9, 2015
bb548a6
Adding documentation for limit zones
arielsalvo Jan 9, 2015
8c1514e
Updating Custom bits doc
arielsalvo Jan 9, 2015
9f36423
Updating UpStream Blocks documentation
arielsalvo Jan 9, 2015
a3f41b9
Restoring reverse proxy configuration to nginx.conf
arielsalvo Jan 9, 2015
cc90358
Updating Status vHost configuration
arielsalvo Jan 9, 2015
4e8f79f
Adding 10.0.0.0/8 to allows hosts to status nginx
arielsalvo Jan 12, 2015
294bfef
Fixing PHP-FPM ping/status sample vhosts
arielsalvo Jan 12, 2015
e2163d8
Adding support for proxied requests in status ACLs
arielsalvo Jan 12, 2015
ce0938a
Restoring map_https_fcgi.conf in nginx.conf
arielsalvo Jan 12, 2015
1535981
Move all zones to the zones directory
arielsalvo Jan 13, 2015
4cd7b08
Reordering includes in nginx.conf
arielsalvo Jan 13, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
/*tar*
custom/*.conf
sites-available/*.conf
sites-enabled/*.conf
upstream/*.conf
upstream/status_vhosts/*.conf
2 changes: 1 addition & 1 deletion apps/drupal/admin_basic_auth.conf
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ location ^~ /admin {
## Include the specific FastCGI configuration. This is for a
## FCGI backend like php-cgi or php-fpm.
include apps/drupal/fastcgi_drupal.conf;
fastcgi_pass phpcgi;
fastcgi_pass $upstream_id;
}
10 changes: 5 additions & 5 deletions apps/drupal/drupal.conf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ location / {
## Include the specific FastCGI configuration. This is for a
## FCGI backend like php-cgi or php-fpm.
include apps/drupal/fastcgi_drupal.conf;
fastcgi_pass phpcgi;
fastcgi_pass $upstream_id;

## If proxying to apache comment the two lines above and
## uncomment the two lines below.
Expand All @@ -50,7 +50,7 @@ location / {
## Include the specific FastCGI configuration. This is for a
## FCGI backend like php-cgi or php-fpm.
include apps/drupal/fastcgi_drupal.conf;
fastcgi_pass phpcgi;
fastcgi_pass $upstream_id;

## If proxying to apache comment the two lines above and
## uncomment the two lines below.
Expand Down Expand Up @@ -199,7 +199,7 @@ location / {
## Include the specific FastCGI configuration. This is for a
## FCGI backend like php-cgi or php-fpm.
include apps/drupal/fastcgi_drupal.conf;
fastcgi_pass phpcgi;
fastcgi_pass $upstream_id;

## If proxying to apache comment the two lines above and
## uncomment the two lines below.
Expand Down Expand Up @@ -232,7 +232,7 @@ location / {
location @drupal {
## Include the FastCGI config.
include apps/drupal/fastcgi_drupal.conf;
fastcgi_pass phpcgi;
fastcgi_pass $upstream_id;

## FastCGI microcache.
include apps/drupal/microcache_fcgi.conf;
Expand All @@ -259,7 +259,7 @@ location @drupal-no-args {
## Include the specific FastCGI configuration. This is for a
## FCGI backend like php-cgi or php-fpm.
include apps/drupal/fastcgi_no_args_drupal.conf;
fastcgi_pass phpcgi;
fastcgi_pass $upstream_id;

## FastCGI microcache.
include apps/drupal/microcache_fcgi.conf;
Expand Down
12 changes: 6 additions & 6 deletions apps/drupal/drupal_boost.conf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ location / {
## Include the specific FastCGI configuration. This is for a
## FCGI backend like php-cgi or php-fpm.
include apps/drupal/fastcgi_drupal.conf;
fastcgi_pass phpcgi;
fastcgi_pass $upstream_id;

## If proxying to apache comment the two lines above and
## uncomment the line below.
Expand All @@ -50,7 +50,7 @@ location / {
## Include the specific FastCGI configuration. This is for a
## FCGI backend like php-cgi or php-fpm.
include apps/drupal/fastcgi_drupal.conf;
fastcgi_pass phpcgi;
fastcgi_pass $upstream_id;

## If proxying to apache comment the two lines above and
## uncomment the line below.
Expand Down Expand Up @@ -192,7 +192,7 @@ location / {
## Include the specific FastCGI configuration. This is for a
## FCGI backend like php-cgi or php-fpm.
include apps/drupal/fastcgi_drupal.conf;
fastcgi_pass phpcgi;
fastcgi_pass $upstream_id;

## If proxying to apache comment the two lines above and
## uncomment the line below.
Expand Down Expand Up @@ -263,7 +263,7 @@ location @cache {
location @drupal {
## Include the FastCGI config.
include apps/drupal/fastcgi_drupal.conf;
fastcgi_pass phpcgi;
fastcgi_pass $upstream_id;

## FCGI microcache for authenticated users also.
include apps/drupal/microcache_fcgi_auth.conf;
Expand All @@ -285,7 +285,7 @@ location @drupal-no-args {
## Include the specific FastCGI configuration. This is for a
## FCGI backend like php-cgi or php-fpm.
include apps/drupal/fastcgi_no_args_drupal.conf;
fastcgi_pass phpcgi;
fastcgi_pass $upstream_id;

## FCGI microcache for authenticated users also.
include apps/drupal/microcache_fcgi_auth.conf;
Expand Down Expand Up @@ -369,7 +369,7 @@ location ~* ^.+\.php$ {

## Boost stats.
location = /boost_stats.php {
fastcgi_pass phpcgi;
fastcgi_pass $upstream_id;
## To use Apache for serving PHP uncomment the line bellow and
## comment out the above.
#proxy_pass http://phpapache;
Expand Down
12 changes: 6 additions & 6 deletions apps/drupal/drupal_boost_escaped.conf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ location / {
## Include the specific FastCGI configuration. This is for a
## FCGI backend like php-cgi or php-fpm.
include apps/drupal/fastcgi_drupal.conf;
fastcgi_pass phpcgi;
fastcgi_pass $upstream_id;

## If proxying to apache comment the two lines above and
## uncomment the line below.
Expand All @@ -53,7 +53,7 @@ location / {
## Include the specific FastCGI configuration. This is for a
## FCGI backend like php-cgi or php-fpm.
include apps/drupal/fastcgi_drupal.conf;
fastcgi_pass phpcgi;
fastcgi_pass $upstream_id;

## If proxying to apache comment the two lines above and
## uncomment the line below.
Expand Down Expand Up @@ -195,7 +195,7 @@ location / {
## Include the specific FastCGI configuration. This is for a
## FCGI backend like php-cgi or php-fpm.
include apps/drupal/fastcgi_drupal.conf;
fastcgi_pass phpcgi;
fastcgi_pass $upstream_id;

## If proxying to apache comment the two lines above and
## uncomment the line below.
Expand Down Expand Up @@ -267,7 +267,7 @@ location @cache {
location @drupal {
## Include the FastCGI config.
include apps/drupal/fastcgi_drupal.conf;
fastcgi_pass phpcgi;
fastcgi_pass $upstream_id;

## FCGI microcache for authenticated users also.
include apps/drupal/microcache_fcgi_auth.conf;
Expand All @@ -289,7 +289,7 @@ location @drupal-no-args {
## Include the specific FastCGI configuration. This is for a
## FCGI backend like php-cgi or php-fpm.
include apps/drupal/fastcgi_no_args_drupal.conf;
fastcgi_pass phpcgi;
fastcgi_pass $upstream_id;

## FCGI microcache for authenticated users also.
include apps/drupal/microcache_fcgi_auth.conf;
Expand Down Expand Up @@ -373,7 +373,7 @@ location ~* ^.+\.php$ {

## Boost stats.
location = /boost_stats.php {
fastcgi_pass phpcgi;
fastcgi_pass $upstream_id;
## To use Apache for serving PHP uncomment the line bellow and
## comment out the above.
#proxy_pass http://phpapache;
Expand Down
8 changes: 4 additions & 4 deletions apps/drupal/drupal_cron_update.conf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

## XMLRPC. Comment out if not enabled.
location = /xmlrpc.php {
fastcgi_pass phpcgi;
fastcgi_pass $upstream_id;
# To use Apache for serving PHP uncomment the line bellow and
# comment out the above.
#proxy_pass http://phpapache;
Expand All @@ -16,15 +16,15 @@ location = /cron.php {
if ($not_allowed_cron) {
return 404 /;
}
fastcgi_pass phpcgi;
fastcgi_pass $upstream_id;
## To use Apache for serving PHP uncomment the line bellow and
## comment out the above.
#proxy_pass http://phpapache;
}

## Run the update from the web interface with Drupal 7.
location = /authorize.php {
fastcgi_pass phpcgi;
fastcgi_pass $upstream_id;
## To use Apache for serving PHP uncomment the line bellow and
## comment out the above.
#proxy_pass http://phpapache;
Expand All @@ -33,7 +33,7 @@ location = /authorize.php {
location = /update.php {
auth_basic "Restricted Access"; # auth realm
auth_basic_user_file .htpasswd-users; # htpasswd file
fastcgi_pass phpcgi;
fastcgi_pass $upstream_id;
## To use Apache for serving PHP uncomment the line bellow and
## comment out the above.
#proxy_pass http://phpapache;
Expand Down
10 changes: 5 additions & 5 deletions apps/drupal/drupal_escaped.conf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ location / {
## Include the specific FastCGI configuration. This is for a
## FCGI backend like php-cgi or php-fpm.
include apps/drupal/fastcgi_drupal.conf;
fastcgi_pass phpcgi;
fastcgi_pass $upstream_id;

## If proxying to apache comment the two lines above and
## uncomment the line below.
Expand All @@ -53,7 +53,7 @@ location / {
## Include the specific FastCGI configuration. This is for a
## FCGI backend like php-cgi or php-fpm.
include apps/drupal/fastcgi_drupal.conf;
fastcgi_pass phpcgi;
fastcgi_pass $upstream_id;

## If proxying to apache comment the two lines above and
## uncomment the line below.
Expand Down Expand Up @@ -201,7 +201,7 @@ location / {
## Include the specific FastCGI configuration. This is for a
## FCGI backend like php-cgi or php-fpm.
include apps/drupal/fastcgi_drupal.conf;
fastcgi_pass phpcgi;
fastcgi_pass $upstream_id;

## If proxying to apache comment the two lines above and
## uncomment the line below.
Expand Down Expand Up @@ -233,7 +233,7 @@ location / {
location @drupal {
## Include the FastCGI config.
include apps/drupal/fastcgi_drupal.conf;
fastcgi_pass phpcgi;
fastcgi_pass $upstream_id;

## FastCGI microcache.
include apps/drupal/microcache_fcgi.conf;
Expand All @@ -259,7 +259,7 @@ location @drupal-no-args {
## Include the specific FastCGI configuration. This is for a
## FCGI backend like php-cgi or php-fpm.
include apps/drupal/fastcgi_no_args_drupal.conf;
fastcgi_pass phpcgi;
fastcgi_pass $upstream_id;

## FastCGI microcache.
include apps/drupal/microcache_fcgi.conf;
Expand Down
4 changes: 2 additions & 2 deletions apps/drupal/drupal_install.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
location = /install.php {
auth_basic "Restricted Access"; # auth realm
auth_basic_user_file .htpasswd-users; # htpasswd file
fastcgi_pass phpcgi;
fastcgi_pass $upstream_id;
}

## This is for drupal 8. There's a new location for the install file.
location = /core/install.php {
auth_basic "Restricted Access"; # auth realm
auth_basic_user_file .htpasswd-users; # htpasswd file
fastcgi_pass phpcgi;
fastcgi_pass $upstream_id;
}
2 changes: 1 addition & 1 deletion apps/drupal/microcache_fcgi.conf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
## The cache zone referenced.
fastcgi_cache microcache;
## The cache key.
fastcgi_cache_key $scheme$request_method$host$request_uri;
fastcgi_cache_key $scheme$request_method$is_mobile$host$request_uri;

## For 200 and 301 make the cache valid for 1s seconds.
fastcgi_cache_valid 200 301 1s;
Expand Down
14 changes: 14 additions & 0 deletions blockips.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#-*- mode: nginx; mode: flyspell-prog; ispell-local-dictionary: "american" -*-
### This file implements a blacklist for misbehaved IPs.
### It's a first line of defense. It must be included
### inside a http block.


## Add here all ip addresses or CIDR blocks that are to be blocked.
## Format:
## deny <IP>;
## deny <NET>/<MASK>;
##
## Example:
## deny 10.1.2.3;
## deny 10.0.0.0/8;
6 changes: 6 additions & 0 deletions custom/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Custom configuration bits
=========================

Place your custom configuration files here.

There is no way to know where you'll need to include them so they are not included anywhere by default.
18 changes: 18 additions & 0 deletions map_mobile_useragent.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# -*- mode: nginx; mode: flyspell-prog; ispell-local-dictionary: "american" -*-
### Testing if the client is a mobile or a desktop.
### The selection is based on the usual UA strings for desktop browsers.

## Testing a user agent using a method that reverts the logic of the
## UA detection. Inspired by notnotmobile.appspot.com.
map $http_user_agent $is_desktop {
default 0;
~*linux.*android|windows\s+(?:ce|phone) 0; # exceptions to the rule
~*spider|crawl|slurp|bot 1; # bots
~*windows|linux|os\s+x\s*[\d\._]+|solaris|bsd 1; # OSes
}

## Revert the logic.
map $is_desktop $is_mobile {
1 0;
0 1;
}
Loading