Sha256: c82308e41bf01dc24bd6a546e4ba697a4ae40e20ca7ec0160df93662002b45b9
Contents?: true
Size: 710 Bytes
Versions: 16
Compression:
Stored size: 710 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 $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
Version data entries
16 entries across 16 versions & 1 rubygems