Hi guys,
Recently made the best choice of my life; switching from Ubuntu to FreeBSD. I'm having several Wordpress websites (+- 5) for personal use and intend to use another blogging platform: Octopress. I need some help setting Octopress up on my FreeBSD 9.1 server install. Anyone familiar with that? For me the whole portmanagement / portsystem is quite new and I think I forgot just some basic things. So don't laugh!
Installed:
Then:
Showing 1.9.3 -> seems ok
-> seems ok
So went to Apache22 and defined:
(for example)
And restarted Apache.
Guess I just need some things to set up Ruby correctly? For any information about Octopress -> http://octopress.org/
Already asked the people behind it and looked all over the internet and found some Chinese website but guess it's not the only Ruby / Jekkyll platform on BSD.
Help is much appreciated :e
Recently made the best choice of my life; switching from Ubuntu to FreeBSD. I'm having several Wordpress websites (+- 5) for personal use and intend to use another blogging platform: Octopress. I need some help setting Octopress up on my FreeBSD 9.1 server install. Anyone familiar with that? For me the whole portmanagement / portsystem is quite new and I think I forgot just some basic things. So don't laugh!
Installed:
Code:
/usr/ports/editors/vim-lite/ && make install clean
/usr/ports/ports-mgmt/portmaster && make install clean
/usr/ports/devel/git & make install clean
pkg_add -r ruby
Code:
vim /usr/ports/Mk/bsd.ruby.mk changed 1.8 to 1.9
portmaster converters/ruby-iconv
portmaster /usr/ports/sysutils/rubygem-bundler
rehash
git clone git://github.com/imathis/octopress.git /usr/local/www/apache2/data/octopress
cd /usr/local/www/apache2/data/octopress
ruby --version
Code:
gem install bundler
rehash
bundle install
rake install
So went to Apache22 and defined:
(for example)
Code:
<VirtualHost *:80>
ServerAdmin [email]webmaster@dummy-host.example.com[/email]
DocumentRoot "/usr/local/www/apache22/data/octopress"
ServerName [url]http://www.website.nl[/url]
ServerAlias website.nl
<Directory /usr/local/www/apache22/data/octopress/>
AllowOverride All
Order Deny,Allow
Allow from all
</Directory>
</VirtualHost>
Guess I just need some things to set up Ruby correctly? For any information about Octopress -> http://octopress.org/
Already asked the people behind it and looked all over the internet and found some Chinese website but guess it's not the only Ruby / Jekkyll platform on BSD.
Help is much appreciated :e