hexojs / hexo-server

Server module for Hexo.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

config ip setting is not respected

webuniverseio opened this issue · comments

In my config file I have following:

port: 4000
server_ip: 127.0.0.1

However hexo always starts on 0.0.0.0. For now I use --ip as a workaround, and I think it should be fixed.

Try this:

server:
  ip: 127.0.0.1
  port: 4000

Thank you sir