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

Angular5 with Asp.Net Core 2.1 application deployment problem on nginx

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

我可以做到以下几点:

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

但是 angular 的网站无法正常工作:

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;
        #}
}

使用这个默认文件,我已经完成了多个位置,但它还是没有用。

你能告诉我如何部署 Angular 应用程序 运行 以及 dotnetcore 2.1 api.

dotnet 中的某种方式 app.UseStaticFiles();被评论了。我删除了评论,是的,它开始工作了。