https://github.com/creationix/node-blog
This repo is the code behind the blog HowToNode.org
https://github.com/creationix/node-blog
Last synced: about 1 year ago
JSON representation
This repo is the code behind the blog HowToNode.org
- Host: GitHub
- URL: https://github.com/creationix/node-blog
- Owner: creationix
- Created: 2010-01-29T17:59:08.000Z (over 16 years ago)
- Default Branch: master
- Last Pushed: 2010-02-21T06:18:37.000Z (over 16 years ago)
- Last Synced: 2025-03-24T04:13:49.558Z (about 1 year ago)
- Language: JavaScript
- Homepage: http://howtonode.org/
- Size: 117 KB
- Stars: 76
- Watchers: 3
- Forks: 11
- Open Issues: 1
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
# node-blog
node-blog is a static site generator. It's built on node and is currently used to auto-generate the site
The source code for the site is at
Here is part of the nginx config for howtonode.org:
server {
listen 80;
server_name howtonode.org;
root /home/tim/www/howtonode.org/public;
index index.html;
location / {
if (-f $request_filename.html) {
rewrite (.*) $1.html break;
}
}
location /post_hook {
proxy_pass http://127.0.0.1:4242;
}
}