diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2017-02-01 22:08:12 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2017-02-01 22:08:12 +0300 |
commit | 1a877686e6588d5c944e9dfca8642f5070178f39 (patch) | |
tree | 9812fc0b2541da7528035a2dc92e3db3317d2eb9 | |
parent | bump dependencies (diff) | |
download | egor-tensin.github.io-1a877686e6588d5c944e9dfca8642f5070178f39.tar.gz egor-tensin.github.io-1a877686e6588d5c944e9dfca8642f5070178f39.zip |
bind to 0.0.0.0 instead of localhost
Diffstat (limited to '')
-rw-r--r-- | serve.bat | 2 | ||||
-rwxr-xr-x | serve.sh | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1 +1 @@ -bundle exec jekyll serve --watch --force_polling --config _config.yml,_config_dev.yml +bundle exec jekyll serve --watch --force_polling --host 0.0.0.0 --config _config.yml,_config_dev.yml @@ -1,3 +1,3 @@ #!/bin/sh -bundle exec jekyll serve --watch --force_polling --config _config.yml,_config_dev.yml +bundle exec jekyll serve --watch --force_polling --host 0.0.0.0 --config _config.yml,_config_dev.yml |