basyura's blog

あしたになったらほんきだす。

2014-03-23から1日間の記事一覧

apache + rails をサブディレクトリで動かしたい

http://localhost:3000 じゃなくて、http://localhost/sample で動かしたい。httpd.conf <VirtualHost *:80> ProxyPass /sample http://localhost:3000/sample ProxyPassReverse /sample http://localhost:3000/sample </VirtualHost>config/environments/development.rb config.relative_url…