在azure linux应用服务中托管angular应用程序

lymnna71  于 2023-05-29  发布在  Linux
关注(0)|答案(1)|浏览(132)

我正在使用Angular框架来构建前端应用程序。如何将应用程序部署到Azure Linux应用程序服务?
我已经用NodeJS堆栈创建了Web应用程序,并将其分配给Linux应用程序服务。我已经用ng build --prod命令构建了我的angular应用程序,并将其部署到这个Web应用程序中。当我打开带有URL的Web浏览器时:https://<web-app-name.azurewebsites.net/我能看到的是默认的html页面,而不是我的index.html
我想在Azure存储上使用静态网站,但我发现,每个Azure存储只能有一个静态网站,但假设我有10个静态网站。因此,我不需要创建10个Azure存储帐户。

hts6caw3

hts6caw31#

您仍然看到默认页面的原因是服务器不知道查看index.html,这是Angular应用程序的入口点。你需要在Angular应用中创建一个index.js文件,然后将其包含在angular.json的assets部分。

"assets": [
              "src/favicon.ico",
              "src/assets",
              "src/index.js"
            ],

下面是一个index.js文件示例,它还包括从非www域重定向到www域:

// Imports
var express = require('express');
var path = require('path');

// Node server
var server = express();

// When you create a Node.js app, by default, it's going to use hostingstart.html as the 
// default document unless you configure it to look for a different file
// https://blogs.msdn.microsoft.com/waws/2017/09/08/things-you-should-know-web-apps-and-linux/#NodeHome
var options = {
    index: 'index.html'
};

// Middleware to redirect to www
server.all("*", (request, response, next) => {
    let host = request.headers.host;

    if (host.match(/^www\..*/i)) {
        next();
    } else {
        response.redirect(301, "https://www." + host + request.url);
    }
});

// This needs to be after middleware configured for middleware to be applied
server.use('/', express.static('/home/site/wwwroot', options));

// Angular routing does not work in Azure by default
// https://stackoverflow.com/questions/57257403/how-to-host-an-angular-on-azure-linux-web-app
const passthroughExtensions = [
    '.js',
    '.ico',
    '.css',
    '.png',
    '.jpg',
    '.jpeg',
    '.woff2',
    '.woff',
    '.ttf',
    '.svg',
    '.eot'
];

// Route to index unless in passthrough list
server.get('*', (request, response) => {
    if (passthroughExtensions.filter(extension => request.url.indexOf(extension) > 0).length > 0) {
        response.sendFile(path.resolve(request.url));
    } else {
        response.sendFile(path.resolve('index.html'));
    }
});

server.listen(process.env.PORT);

相关问题