我正在嘗試在heroku上設置一個jekyll博客。這是我的目錄結構在heroku上的jekyll博客
.
├── Gemfile
├── Gemfile.lock
├── _layouts
│ └── default.html
├── _posts
├── _site
│ ├── Gemfile
│ ├── Gemfile.lock
│ ├── config.ru
│ └── index.html
├── config.ru
└── index.html
我的Gemfile有
source "http://rubygems.org"
gem 'jekyll'
,並與任何唯一的其他文件中它是index.html
與
Hello world!
如果我運行jekyll --server
運行良好本地。但是,如果我git push heroku master
(檢查一切之後)我在Heroku的日誌出現此錯誤
!! Unexpected error while processing request: undefined method `[]' for nil:NilClass
我怎樣才能讓我的哲基爾的博客在Heroku上工作?