Sha256: 596ee690b0e4736cb692043eee9d05060f87ac2371ce70a8d460687ab923d30b

Contents?: true

Size: 904 Bytes

Versions: 22

Compression:

Stored size: 904 Bytes

Contents

client_max_body_size 0; # Git pushes can be massive, just to make sure nginx doesn't suddenly cut the connection add this. Setting to 0 disables checking of client_max_body_size
fastcgi_buffering off; # disables buffering of responses from the FastCGI server on nginx

include fastcgi_params; # Include the default fastcgi configs

fastcgi_param NO_BUFFERING 1; # disables buffering on fcgiwrap
fastcgi_param SCRIPT_FILENAME /usr/libexec/git-core/git-http-backend; # Tells fastcgi to pass the request to the git http backend executable.
fastcgi_param PATH_INFO $uri; # Takes the capture group from our location directive and gives git that.
fastcgi_param REMOTE_USER $remote_user; # Forward REMOTE_USER as we want to know when we are authenticated

# IMPORTANT NOTE: Other required fastcgi_params have been defined as environment variables in the prereceiver container and hence need not be passed here.

Version data entries

22 entries across 22 versions & 2 rubygems

Version Path
smartcloud-0.2.1 lib/smartcloud/templates/dotsmartcloud/grids/grid-nginx/fastcgi.conf
smartcloud-0.2.0 lib/smartcloud/templates/dotsmartcloud/grids/grid-nginx/fastcgi.conf