1

These are my firewall rules on google compute instance. I am running a jekyll blog on the machine at port 4001. But I am unable to access the blog on http://mach-ip:4001

I have been trying since last night. I am wondering, what's wrong. Same firewall rules on Amazon EC2, doesn't cause any problems.

which rule should I edit? Or if there is any other thing that i am missing? Please help.

enter image description here

prashantitis
  • 1,797
  • 3
  • 23
  • 52

1 Answers1

1

start jekyll server like this

jekyll serve --host 0.0.0.0 --port 4567

not like this

jekyll serve --port 4567

to listen on every available network interface For an explaination, see this

prashantitis
  • 1,797
  • 3
  • 23
  • 52