File name
Commit message
Commit date
const PROJECT_NAME = "NodeJS Web Server Framework(Vue)";
const PROJECT_VERSION = "1.0";
const BASE_DIR = __dirname;
// const LOG_BASE_DIR = `${__dirname}/server/logs`;
const LOG_BASE_DIR = `/aidt/log/nodejs20`;
const SERVICE_STATUS = process.env.NODE_ENV; //development, production
const PORT = 80;
//const API_SERVER_HOST = "localhost:9090";
//운영서버
// const API_SERVER_HOST = [{inside : "http://172.30.113.99:8080", outside : "http://172.30.113.99:8080"},
// {inside : "http://172.30.113.87:8080", outside : "http://172.30.113.87:8080"}];
const API_SERVER_HOST = [{inside : "http://localhost:9090", outside : "http://165.229.169.111:9090"}];
// const API_SERVER_HOST = [{inside : "http://172.26.7.64:8080", outside : "http://210.90.168.119:8080"}];
//const API_SERVER_HOST = "http://172.26.7.64:8080";
module.exports = {
PROJECT_NAME,
PROJECT_VERSION,
BASE_DIR,
LOG_BASE_DIR,
SERVICE_STATUS,
PORT,
API_SERVER_HOST,
};