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

Use fastcgi include for Nginx development container #102

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion nginx/dev/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM skpr/nginx:1.x

ADD default.conf /etc/nginx/conf.d/default.conf
ADD fastcgi_dev.conf /etc/nginx/overrides.d/fastcgi/dev.conf
144 changes: 0 additions & 144 deletions nginx/dev/default.conf

This file was deleted.

10 changes: 10 additions & 0 deletions nginx/dev/fastcgi_dev.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
fastcgi_pass localhost:9000;

# Route to a separate container with xdebug enabled.
if ($cookie_XDEBUG_SESSION){
fastcgi_pass localhost:9001;
}

# Bump the buffer size to accomodate large headers on local environments.
fastcgi_buffers 16 16k;
fastcgi_buffer_size 16k;