Я пытаюсь развернуть приложение Angular 5 Digital Ocean Ubuntu 16.4 Nginx. Но приложение Angular оттуда не работает должным образом.
Я могу сделать ниже:
HTTP :: // IP-адрес / API / значения
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;
#}
}
С этим файлом по умолчанию я сделал с несколькими местоположениями, но опять же он не работал.
Подскажите, пожалуйста, как мне развернуть приложение Angular, работающее вместе с dotnetcore 2.1 api.