DEV Community

Discussion on: Install ASP.NET Core on Linux Azure Virtual Machine Ubuntu 18.04 LTS

Collapse
 
sakataa profile image
sakataa

Could you share me the content of /etc/nginx/sites-available/default

Collapse
 
rebiiin profile image
Rebin

Sure, here is the content of the default file.



server {
    listen 80;
    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 $http_host;
  proxy_cache_bypass $http_upgrade;
  }
}

Collapse
 
sakataa profile image
sakataa

thank you so much