2

バニラ Octopress ブログをセットアップし、github ページでホストしていますが、使用時にいくつかの問題が発生していrake previewます。

トラブルシューティングに役立つように、Octopress をセットアップしてから行った変更の短いリストを次に示します (思い出すことができます)。

  1. _config.yml で、URL を自分のドメインに変更しました
  2. _config.yml で、ルートを「/」に変更
  3. _config.yml で、サードパーティの設定で自分の github リポジトリを指定しました
  4. /public/github に自分のドメインを指す CNAME を追加しました
  5. /source/ に私のドメインを指す CNAME を追加しました
  6. を使って投稿しましたrake new_post

問題の説明は次のとおりです。

  1. http://localhost:4000404 が返さますが、自分のサイトをhttp://localhost:4000/github/index.html
  2. /github/index.html をプレビューすると、ほとんどのスタイルシート/JS が 404 を返します。

を実行するrake generateと、次のようになりrake previewます。

Starting to watch source with Jekyll and Compass. Starting Rack on port 4000
Configuration from /Users/[redacted]/Documents/code/octopress/_config.yml
[2013-09-09 10:21:44] INFO  WEBrick 1.3.1
[2013-09-09 10:21:44] INFO  ruby 1.9.3 (2013-06-27) [x86_64-darwin11.4.2]
[2013-09-09 10:21:44] INFO  WEBrick::HTTPServer#start: pid=39870 port=4000
Auto-regenerating enabled: source -> public/github
[2013-09-09 10:21:45] regeneration: 95 files changed
>>> Change detected at 10:21:45 to: screen.scss
identical public/github/stylesheets/screen.css 

Dear developers making use of FSSM in your projects,
FSSM is essentially dead at this point. Further development will
be taking place in the new shared guard/listen project. Please
let us know if you need help transitioning! ^_^b
- Travis Tilley

>>> Compass is watching for changes. Press Ctrl-C to Stop.
4

2 に答える 2

0

destinationで設定を変更しましたか_config.yml。デフォルトは次のようになります。

root: /
permalink: /blog/:year/:month/:day/:title/
source: source
destination: public
于 2014-01-16T02:00:48.513 に答える