asp.net core 2.0 Unable to Post to database

后端 未结 1 711
耶瑟儿~
耶瑟儿~ 2020-12-17 17:20

I have a web application that is being developed on a windows env and runs on ubuntu 16.04.

I have no issues Posting info to my sqlite database file blog.db

相关标签:
1条回答
  • 2020-12-17 17:35

    It was my nginx configuration.

    within /./etc/nginx is a file called: nginx.conf

    I had proxy_set_header Connection "upgrade";

    when it should be proxy_set_header Connection $http_connection;

    This fixed my problem and my database now works on the ubuntu side of things.

    0 讨论(0)
提交回复
热议问题