jordan
jordan

Reputation: 10812

Nginx timeout on Digital Ocean

I have a Ruby on Rails application running on DigitalOcean. I keep running into a 504 Gateway Timeout error with Nginx. Most recently it happened when running service unicorn restart and service nginx restart. I don't see anything apparent in the production logs about any problems with nginx or unicorn. In fact it is saying that my root view was rendered, despite me getting a time out error. I'm a bit confused about what might be causing this error and I'm not a little unsure what information I can provide in this question to be of any help.

Upvotes: 0

Views: 563

Answers (1)

franklinexpress
franklinexpress

Reputation: 1189

Edit your unicorn config at /home/unicorn/unicorn.conf and comment out the line user 'rails'

then:

service unicorn restart

Upvotes: 1

Related Questions