Angular5与nginx上的Asp.Net Core 2.1应用程序部署问题

问题描述 投票:0回答:1

我正在尝试部署Angular 5应用程序Digital Ocean Ubuntu 16.4 Nginx。但是Angular应用程序在那里工作不正常。

我可以在下面做:

http :: // ipaddress / api / values http://domainname/api/values

但角度的网站不起作用:

http://domainname http://ipaddress

我尝试了几种组合来访问应用程序,但它对我不起作用。

您可以看到nginx的以下默认文件:

server {
        listen 80 default_server;
        listen [::]:80 default_server;
        location / {
                proxy_pass http://localhost:5000;
                proxy_http_version 1.1;
                proxy_set_header Upgrade $http_upgrade;
                proxy_set_header Connection keep-alive;
                proxy_set_header Host $host;
                proxy_cache_bypass $http_upgrade;
        }
        # SSL configuration
        #
        # listen 443 ssl default_server;
        # listen [::]:443 ssl default_server;
        #
        # Note: You should disable gzip for SSL traffic.
        # See: https://bugs.debian.org/773332
        #
        # Read up on ssl_ciphers to ensure a secure configuration.
        # See: https://bugs.debian.org/765782
        #
        # Self signed certs generated by the ssl-cert package
        # Don't use them in a production server!
        #
        # include snippets/snakeoil.conf;

#       root /var/www/html;
        root /home/xxxx/www;


        # Add index.php to the list if you are using PHP
        index index.html index.htm index.nginx-debian.html;

#       server_name _;

#       location / {
                # First attempt to serve request as file, then
                # as directory, then fall back to displaying a 404.
#               try_files $uri $uri/ =404;
        #       proxy_pass http://localhost:4200;
        #}
}

使用此默认文件,我已完成多个位置,但它再次无法正常工作。

你能否告诉我如何部署与dotnetcore 2.1 api一起运行的Angular应用程序。

angular nginx asp.net-core ubuntu-16.04 digital-ocean
1个回答
0
投票

不知何故在dotnet app.UseStaticFiles();评论说。我删除了评论,是的,它开始工作了。

© www.soinside.com 2019 - 2024. All rights reserved.