Не удалось загрузить ресурс: сервер ответил с состоянием 404 (не найдено) в angular.js
Я создал файл войны и пытаюсь развернуть его в Bluemix.
App.js
var express = require("express");
var app = express();
var path = require("path");
app.use("/", express.static(__dirname));
app.get('/', function(req, res) {
res.sendFile(path.join(__dirname + '/ingestion-scala-apidocs/index.html'));
});
app.set('port', process.env.PORT);
console.log(port);
manifest.yml
applications:
- name: connectors
path: connectors.war
memory: 900M
instances: 1
host: connectors
domain: mybluemix.net
После нажатия на bluemix и нажатия на имя хоста я получаю следующую ошибку:
Failed to load resource: the server responded with a status of 403 (Forbidden)
Failed to load resource: the server responded with a status of 404 (Not Found)