ryuryu1010
@ryuryu1010

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

AWS Elastic Beanstalk失敗

Elastic Beanstalkを使用してみました
下記のサイトを試したら問題無くできました。
その後、自分のコードを入れてみて行って見たのですが、502 Bad Gatewayエラーが出てしましました。
どなたかご教授お願いします。

スクリーンショット 2023-02-15 18.17.33.png

Directoryの階層です。
スクリーンショット 2023-02-15 18.20.57.png

app.js
import express from "express";
import mysql from "mysql";
import path from 'path';
import { fileURLToPath } from 'url';
import router from "./routers/index.js";
const app = express();

const connection = mysql.createConnection({
  host: "localhost",
  user: "root",
  password: "a",
  port: 3306,
  database: "express",
});

connection.connect();

const __filename = fileURLToPath(import.meta.url);

const __dirname = path.dirname(__filename);

app
  .use(express.static(path.join(__dirname, "public")))
  .use('/',router)
  .set("views", path.join(__dirname, "views"))
  .set("view engine", "ejs")
  .listen(process.env.PORT | 3000, () => console.log(`Listening on http://localhost:3000`));

deployコマンド

eb deploy nodejs-project1-env
0

No Answers yet.

Your answer might help someone💌