0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Laradock使ったら表示できなくてNginxに怒られた

Posted at

エラー

なんかLaradock起動したのに localhost でつながらんな、と思って確認したら、
docker-compose で起動したときに -d しないでログ見てたらこんなのが出ていた。

nginx: [emerg] socket() [::]:80 failed (97: Address family not supported by protocol)

環境

  • Arch Linux (もうこれが原因のような気しかしない)

原因

IPv6 がないよって nginx がキレている。
私のArchではIPv6を中途半端にdisableしていた。そりゃ使えないって言われるか。

対処

Laradock/nginx/sites/default.conf 内の設定をいじる

default.conf
server {

    listen 80 default_server;
    # listen [::]:80 default_server ipv6only=on;
    # ↑これをコメントアウトしておく

で docker-compose 上げ直し。

やったぜ

Archくん、LinuxネイティブだからDocker早いんだが、小生のスキル不足で躓くこともそこそこ。
勉強せねば

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?