diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-08-07 12:18:58 -0400 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-08-07 12:18:58 -0400 |
commit | 9c2f64d20cd881054abe09247c26162118afe541 (patch) | |
tree | 9109213851e227664547d79d45f9185d2727a80b /_config.yml | |
parent | 3a599d415932af8ff336ce0632e309f37d5747f4 (diff) | |
download | my_new_personal_website-9c2f64d20cd881054abe09247c26162118afe541.tar.xz my_new_personal_website-9c2f64d20cd881054abe09247c26162118afe541.zip |
fixed issue where port setting didn't change jekyll's webbrick in _config.yml. Accidentally used port where I should have used server_port fixes #70
Diffstat (limited to '_config.yml')
-rw-r--r-- | _config.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_config.yml b/_config.yml index 9a48c018..36ebe90c 100644 --- a/_config.yml +++ b/_config.yml @@ -20,7 +20,7 @@ email: # If publishing to a subdirectory as in http://site.com/project set 'root: /project' root: / -port: 4000 +server_port: 4000 permalink: /blog/:year/:month/:day/:title/ source: source destination: public |