Last active
December 21, 2015 17:00
-
-
Save regularfry/e9770b4bedb327a9e996 to your computer and use it in GitHub Desktop.
gemstash problem
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cat /etc/nginx/sites-available/gemstash.conf | |
server { | |
listen 80; | |
listen [::]:80; | |
server_name gemstash; | |
keepalive_timeout 0; | |
location / { | |
proxy_pass http://127.0.0.1:9292; | |
} | |
} | |
$ cat Gemfile | |
source "http://gemstash/" | |
gem "main" | |
$ bundle install | |
Fetching gem metadata from http://gemstash/........... | |
Fetching version metadata from http://gemstash/.. | |
Gem::RemoteFetcher::FetchError: too many connection resets (http://gemstash/gems/arrayfields-4.9.2.gem) | |
Gem::RemoteFetcher::FetchError: too many connection resets (http://gemstash/gems/chronic-0.10.2.gem) | |
Gem::RemoteFetcher::FetchError: too many connection resets (http://gemstash/gems/fattr-2.2.2.gem) | |
Gem::RemoteFetcher::FetchError: too many connection resets (http://gemstash/gems/map-6.5.5.gem) | |
Using bundler 1.11.2 | |
An error occurred while installing arrayfields (4.9.2), and Bundler cannot continue. | |
Make sure that `gem install arrayfields -v '4.9.2'` succeeds before bundling. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment