Skip to content

Commit

Permalink
Fix indents
Browse files Browse the repository at this point in the history
  • Loading branch information
A5hleyRich committed Nov 26, 2017
1 parent ca484fe commit a6498a6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions global/php-pool.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
# Additional upstreams can be added to /etc/nginx/upstreams/*.conf and then you just
# change `default php71` to whatever the new upstream is (could be php70 for example).
upstream php71 {
server unix:/run/php/php7.1-fpm.sock;
server unix:/run/php/php7.1-fpm.sock;
}

include /etc/nginx/upstreams/*.conf;

map '' $upstream {
default php71;
default php71;
}
8 changes: 4 additions & 4 deletions nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ http {
# Limits & Timeouts
include global/limits.conf;

# Some WP plugins that push large amounts of data via cookies
# can cause 500 HTTP errors if these values aren't increased.
fastcgi_buffers 16 16k;
fastcgi_buffer_size 32k;
# Some WP plugins that push large amounts of data via cookies
# can cause 500 HTTP errors if these values aren't increased.
fastcgi_buffers 16 16k;
fastcgi_buffer_size 32k;

# Default Logs
error_log /var/log/nginx/error.log warn;
Expand Down
2 changes: 1 addition & 1 deletion upstreams/php70.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Defines the upstream for PHP 7.0
upstream php70 {
server unix:/run/php/php7.0-fpm.sock;
server unix:/run/php/php7.0-fpm.sock;
}

0 comments on commit a6498a6

Please sign in to comment.