Sha256: 821d2df061b93d38cb8d9c43f297ef04b73d1690d25eb13b3be82878dd34daf9

Contents?: true

Size: 876 Bytes

Versions: 2

Compression:

Stored size: 876 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.

include fastcgi_params; # Include the default fastcgi configs

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 GIT_HTTP_EXPORT_ALL "";
# fastcgi_param GIT_PROJECT_ROOT /.smartcloud/grids/grid-runner/apps/repositories; # is the location of all of your git repositories.
fastcgi_param PATH_INFO $path_info; # 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 already as environment variables in the runner container and hence need not be passed here.

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
smartcloud-0.0.48 lib/smartcloud/grids/grid-nginx/fastcgi.conf
smartcloud-0.0.47 lib/smartcloud/grids/grid-nginx/fastcgi.conf