5月012013
0
% sudo apt-get install upstartでsysvinitが消えてupstartが入り、
一度リブートしたら有効になった。
% sudo apt-get install upstartでsysvinitが消えてupstartが入り、
研究会に1年生が何人かいた(ふつう1年生は1人も履修しない)ので、何があったのか聞いたら今年は入学前からLINEが流行っていたのだという。
SFCに入学予定の高校生がtwitterで誘い合ってLINEの部屋を作り、1部屋の人数上限100人を超えて2部屋目ができるほどの盛況ぶりで、いろいろ情報交換をしていたらしい。
3部屋目は1部屋目から情弱部屋とか呼ばれてたりしそう。
名前は忘れたけど実はSFCには生徒会?みたいなのがある?らしくて、例年4人ぐらいしか立候補しないらしいんだけど今年は20人ぐらい立候補して選挙の選挙をするとか言ってた。
LINEヤバイ
% sudo foreman export upstart /etc/init --app rocketio-chat --port 4000 -d `pwd` -c web=1 -u `whoami`起動時にwebsocketのportや、RACK_ENVなどを環境変数で渡したいのだが
% sudo service rocketio-chat startkillしたり、OSを再起動しても自動的にプロセスが立ち上がる事を確認する。
% sudo service rocketio-chat stop
% sudo service rocketio-chat restart
start on starting rocketio-chat-web
stop on stopping rocketio-chat-web
respawn
exec su - sho -c 'cd /home/sho/src/sinatra/rocketio-chat-sample; export PORT=4000; bundle exec rackup config.ru -p $PORT >> /var/log/rocketio-chat/web-1.log 2>&1'
rbenv local 2.0.0-p0してruby2.0を使うようにした。
start on starting rocketio-chat-web
stop on stopping rocketio-chat-web
respawn
exec su - sho -c '
cd /home/sho/src/sinatra/rocketio-chat-sample;
export RACK_ENV=production;
export WS_PORT=18080;
export PORT=4000;
/home/sho/.rbenv/shims/bundle exec rackup config.ru -p $PORT >> /var/log/rocketio-chat/web-1.log 2>&1
'
% sudo service rocketio-chat restart
これが参考になった
nginxを1.3.14にしたらWebSocketがProxyできた
config-com.favorymous.www.conf
おかげで家のMacでRocketIOのcomet/websocketチャットが動いた
http://chat.shookai.org/
サブドメインで判別してアプリにproxyしている。
brew info nginxdevelなら、変なことしなくてもwebsocket proxyが使える1.3.14がインストールできる。
brew install nginx --devel
nginxhttp://localhost:8080 で起動している事を確認。
nginx -s stop
cp /usr/local/Cellar/nginx/1.3.14/homebrew.mxcl.nginx.plist ~/Library/LaunchAgents/
launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.nginx.plist
launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.nginx.plist
brew uninstall nginx
nginx -t
upstream rocketio-chat {
server 127.0.0.1:5000;
}
server {
listen 8080;
charset utf-8;
server_name chat.shookai.org;
root /Users/sho/projects/rocketio/rocketio-chat-sample/public;
location / {
try_files $uri $uri/index.html $uri.html @rocketio-chat;
}
location @rocketio-chat{
proxy_read_timeout 300;
proxy_connect_timeout 300;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Document-Root $document_root;
proxy_set_header X-Document-URI $document_uri;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_pass http://rocketio-chat;
}
}
upstream rocketio-chat {
server 127.0.0.1:5000;
}
server {
listen 8080;
charset utf-8;
server_name chat.shookai.org;
root /Users/sho/projects/rocketio/rocketio-chat-sample/public;
location / {
try_files $uri $uri/index.html $uri.html @rocketio-chat;
}
location @rocketio-chat{
include includes/proxy.conf;
proxy_pass http://rocketio-chat;
}
}
同様の方法でNodeなどのアプリもインストールできる。
例として、このSinatraアプリをMacで自動的に起動するようにインストールする。
shokai/rocketio-chat-sample · GitHub
Herokuを使っていたら普通こういうProcfileをアプリと同じディレクトリに置いてあるはず。
web: bundle exec rackup config.ru -p $PORT
% sudo foreman export launchd ~/Library/LaunchAgents/ --app rocketio-chat -c web=1 -u `whoami`
% launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.nginx.plist
% launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.nginx.plist
% rbenv local 2.0.0-p0して、.ruby-vesionを作っておく。plistの設定でWorkingDirectoryが指定してあれば.ruby-versionを読んでくれるようだ。
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>rocketio-chat-web-1</string>
<key>EnvironmentVariables</key>
<dict>
<key>WS_PORT</key>
<string>33100</string>
<key>PATH</key>
<string>/bin:/usr/bin:/usr/local/bin:/usr/local/sbin</string>
</dict>
<key>ProgramArguments</key>
<array>
<string>/Users/sho/.rbenv/shims/bundle</string>
<string>exec</string>
<string>rackup</string>
<string>config.ru</string>
<string>-p</string>
<string>5000</string>
</array>
<key>KeepAlive</key>
<true/>
<key>RunAtLoad</key>
<true/>
<key>StandardOutPath</key>
<string>/var/log/rocketio-chat/rocketio-chat-web-1.log</string>
<key>StandardErrorPath</key>
<string>/var/log/rocketio-chat/rocketio-chat-web-1.log</string>
<key>UserName</key>
<string>sho</string>
<key>WorkingDirectory</key>
<string>/Users/sho/projects/rocketio/rocketio-chat-sample</string>
</dict>
</plist>