1、nginx 配置文件 ????1.1、项目目录放在系统/var/www/ upstream?app?{
#?Path?to?Unicorn?SOCK?file,?as?defined?previously
server?unix:/var/www/app/shared/sockets/unicorn.sock?fail_ti...
分类:
系统相关 时间:
2015-11-13 13:20:45
阅读次数:
402
(1)首先在current文件夹下新建服务有关的nginx配置文件nginx.confupstream news_server { server unix:/tmp/unicorn.news.sock fail_timeout=0;}server { listen 8888; access_l...
分类:
其他好文 时间:
2015-09-18 21:52:53
阅读次数:
181
#!/bin/bashecho "# deb cdrom:[Ubuntu 14.10 _Utopic Unicorn_ - Release amd64 (20141022.1)]/ utopic main restricted# See http://help.ubuntu.com/communit...
分类:
其他好文 时间:
2015-09-05 17:44:56
阅读次数:
184
#!/bin/bashecho "# deb cdrom:[Ubuntu 14.10 _Utopic Unicorn_ - Release amd64 (20141022.1)]/ utopic main restricted# See http://help.ubuntu.com/communit...
分类:
系统相关 时间:
2015-09-05 17:37:10
阅读次数:
189
One day, Twilight Sparkle is interested in how to sort a sequence of integers
a1,?a2,?...,?an in non-decreasing order. Being a young unicorn, the only operation she can perform is a unit shift. That...
分类:
其他好文 时间:
2015-08-20 20:53:05
阅读次数:
169
执行
sudo -u git -H bundle exec rake gitlab:check RAILS_ENV=production
检查提示Check GitLab API access: FAILED: Failed to connect to internal API
查看gitlab/config/unicorn.rb
listen "127.0.0.1:9000", ...
分类:
数据库 时间:
2015-08-02 23:24:49
阅读次数:
2777
规则1:减少HTTP请求 把多个JS请求合并为一个JS请求,把多个CSS请求合并为一个CSS请求。从而减少从客户端向服务器端的请求数。 规则3:添加Expires头 用http请求的查看工具,我这里用的是firebug查看http请求,可以看到响应头中有Expires头,unicorn的设置的默认....
分类:
Web程序 时间:
2015-07-21 14:22:13
阅读次数:
147
ror 学习笔记2在railsapp的config文件夹中新建unicorn.rb内容如下worker_processes2working_directory"/home/mage/boleht"listen"/tmp/unicorn.boleht.sock"listen19555, :tcp_no...
分类:
其他好文 时间:
2015-06-17 21:19:25
阅读次数:
122
将Sinatra应用写好了之后,可以使用unicorn将之部署到Nginx上,Sinatra的应用可以参考我的boilerplate:https://github.com/frederichchen/fc_sinatra_boilerplateSinatra平时开发的时候我用Thin来做服务器,部署...
分类:
其他好文 时间:
2015-05-29 15:32:46
阅读次数:
110
最近接手了一个ruby的web项目,由于之前没有接触过ruby以及相关的web开发,而且项目当中文档缺失,所以在部署该项目的时候很是走了一些弯路。最后参照多篇ruby on rails的开发环境部署,以及学习了下ruby当中的gem/bundler等的关系,成功部署项目。在这儿记一下,算是一个小的总结,也可以对ruby web开发刚入门部署环境时提供一个参照。
我们的项目是基于padri...
分类:
Web程序 时间:
2015-05-27 21:09:37
阅读次数:
214