前提・実現したいこと
Docker環境を構築して、Laravelアプリを作成しようとしています。
発生している問題・エラーメッセージ
chrome
1localhost:10080 2 3>> ERR_EMPTY_RESPONSE
該当のソースコード
【docker-compose.yml】 version: "3.8" services: app: build: ./infra/php volumes: - ./backend:/work web: image: nginx:1.18-alpine ports: - 10080:80 volumes: - ./backend:/work - ./infra/nginx/default.conf:/etc/nginx/conf.d/default.conf working_dir: /work db: build: ./infra/mysql volumes: - db-store:/var/lib/mysql volumes: db-store:
【infra/nginx/default.conf】 server { listen 80; server_name example.com; root /work/public; add_header X-Frame-Options "SAMEORIGIN"; add_header X-XSS-Protection "1; mode=block"; add_header X-Content-Type-Options "nosniff"; index index.php; charset utf-8; location / { try_files $uri $uri/ /index.php?$query_string; } location = /favicon.ico { access_log off; log_not_found off; } location = /robots.txt { access_log off; log_not_found off; } error_page 404 /index.php; location ~ .php$ { fastcgi_pass app:9000; fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name; include fastcgi_params; } location ~ /.(?!well-known).* { deny all; } }
【ターミナル docker-compose ps】 voice-file_app_1 docker-php-entrypoint php-fpm Up 9000/tcp voice-file_db_1 docker-entrypoint.sh mysqld Up 3306/tcp, 33060/tcp voice-file_web_1 /docker-entrypoint.sh /bin Up 0.0.0.0:10080->80/tcp,:::10080->80/tcp
試したこと
ポートのLISTENは0.0.0.0です。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。