Skip to content

Instantly share code, notes, and snippets.

View bigDP's full-sized avatar

David Peer bigDP

View GitHub Profile
server {
listen 80;
root /var/www/myaspnetcore/wwwroot;
server_name _;
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;