- About how to install hexo blog engine.
- About how to deploy in remote server.
- About how to update, publish stuff from any place at any time.
requirements
local
These are the basic reguirements on clients to enable remote posting and updates to the hexo blog running on a server.
- root# pacman -S git nodejs yarn
- ~$ yarn global add hexo hexo-cli hexo-deployer-git
remote
These are the requirements to enable live updates to the hexo blog from remote.
- root# pacman -S git nginx
starting the hexo blog project
Check hexo web page for more detailed information on how to start a blog, add themes, publish posts.
Below a quick overview about basic stuff
- Create a new blog:
$> hexo init <folder>
- Blog configuration:
_config.yml
- Add new post:
$> hexo new <post|page|draft> <filename|title>
- Generate static files (files are generated under public folder):
$> hexo generate [--watch]
- Running test server:
$> hexo server
keeping the blog safe in a git repository
Create a new repository in your favourite platform: github, bitbucket…
Follow the instruction to add your blog to the git repository.
Note: I just make sure the public
is not uploaded to the git repository. Contents in public
folder can be regenerated at any time running hexo generate
setting up the server to publish the hexo blog
This will automate the publication of the hexo web site in the server. In general the following steps will also work with any other static site generator such as hugo.
The steps are basically the following:
- Create a git repository on the server which will contain just the generated site
- Add a hook, so every time a
push
is received it will force a pull on the folder published on HTTP Server (nginx)
creating an empty git repository
SSH access to the server should be configured.
To setup an empty repository without a working directory run the following commands as user:
- ~$ mkdir hexo-deploy-project.git
- ~$ cd hexo-deploy-project.git
- ~/hexo-deploy-project.git$ git init --bare
The hexo-deploy-project.git
repository will be used to deploy the hexo blog.
Whenever the hexo-deploy-project.git
repository receives a push
from a git remote copy we need to update a folder which will be published on the http server (nginx). For that we create a hook called post_receive
Add the following content to hexo-deploy-project.git/hooks/post_receive
|
|
Now make sure the work-tree
folder exists and has the right permissions. This is the folder that will be published on the HTTP server
- # mkdir -p /var/www/hexo
- # chown -R $USER.$USER /var/www/hexo
- # chmod -R 755 /var/www/hexo
Finally edit nginx configuration to publish the folder.
Edit or add a new server section in /etc/nginx/nginx.conf
|
|
After restarting the nginx
service you should be able to access the server with http://<servername>
… finally configure deployment in hexo project
Add the following section at the end of your _config.yml
file:
|
|
Now when executing hexo deploy
, the public folder of the hexo project will be pushed to the hexo-deploy-project. As soon as it receives the push
is received, the hook is fired. the /var/www/hexo
is updated, thus is publicly available.
how to use it to publish the blog from anywhere
- From a remote machine (see
local requirement
), checkout your hexo project in git - Write posts, do changes in configuration, test locally (
hexo generate
,hexo server
) - Push your changes to the git repository
- Finally, deploy everything in your server to make it publicly available by running:
- user:~/hexosite$ hexo clean
- user:~/hexosite$ hexo generate
- user:~/hexosite$ hexo deploy
Your new entries should be available at: http://<servername>
See ‘moving from http to https’ post to learn how to enable HTTPS on nginx