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