1. 程式人生 > >Asp.net Core MVC在Ubuntu部署,並且使用nginx反向代理

Asp.net Core MVC在Ubuntu部署,並且使用nginx反向代理

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