标签: ruby-on-rails linux ruby-on-rails-4 nginx timeout
我有Zone,Location和Capacity个模型,zone has_many :locations和location has_many :capacities。 在我的rails4生产服务器上,当我尝试创建超过500个具有容量的位置时,它会超时并显示500错误。但是在后端,它不断创建具有容量的位置。如何阻止我的服务器超时并知道后端进程何时完成 PS:我在Linux环境中使用Nginx。
Zone
Location
Capacity
zone has_many :locations
location has_many :capacities