나는 최근 Rubop/Passenger/Apache에서 작업 할 때 Github 페이지에서 Octopress 사이트를 호스팅하기로 결정했기 때문에 Octopress를 사용하여 '레일스에서'루비를 얻을 수있는 솔루션을 찾기 시작했습니다. .Octopress에 게시하기
이제 내 자신의 옥타프리스가 달렸지 만 나는 Github 및 Octopress에 익숙해 졌기 때문에 문제가 발생했습니다. 아마도 누군가 나를 도울 수 있습니까?
나는이 :
- 마스터 지점
- 이것은 내가 볼 것입니다
소스 지점 :
[email protected] ~/octopress $ git remote -v
octopress git://github.com/imathis/octopress.git (fetch)
octopress git://github.com/imathis/octopress.git (push)
origin https://github.com/xxxxx/xxxxx.github.com.git (fetch)
origin https://github.com/xxxxx/xxxxx.github.com.git (push)
그리고 :
[email protected] ~/octopress $ git branch
* source
을3210
지금은 내가 좋아하는 테마를 가져 왔지만 어떻게 게시물을 배포 할 수 있습니까? Octopress 문서에서 예를 들어 내가 할 수있는 : 나는이 볼 수
rake new_post["Hello Octopress"]
# Creates source/_posts/2012-01-30-Hello-Octopress.markdown
~/octopress/소스/_posts (로컬)
그러나 후에도 (레이크 생성/배포 한 후) :
$rake generate
$git add .
$git commit -m "Initial blog post."
$git push origin source
$rake deploy
나는 그것으로 아무것도 할 수 없어 내가 브라우저를 입력 할 때 - 내가 지속적으로 404 페이지에 오류가
http://xxxxx.nl/blog/2012/01/30/Hello-Octopress
내가 뭘 잘못하고 있고 게시물이 FrontPage (index.html) 또는? 페이지를 만들려고했지만 같은 문제가 있습니다.
작업을 완료 했습니까? 나는 똑같은 문제에 직면 해있다. – iStar