RailsCasts Pro episodes are now free!
Learn more or hide this
GitHub User: darph
Site: http://patrick.heisiph.de
$ sudo vim /etc/nginx/sites-enabled/default
On line 22 (I think) you will see a line that says listen [::]:80 default_server; - comment that one out. then :wq [enter] to save and close.
listen [::]:80 default_server;
:wq [enter]
Then try again: sudo service nginx start. Or just don't worry about it, as the file will be deleted later in the tutorial.
sudo service nginx start
On line 22 (I think) you will see a line that says
listen [::]:80 default_server;
- comment that one out. then:wq [enter]
to save and close.Then try again:
sudo service nginx start
. Or just don't worry about it, as the file will be deleted later in the tutorial.