.Net Core WebApi With MySQL on Different Operating Systems

WebAPI On Windows 10

We will use Xampp for Windows. We installed it from here: https://www.apachefriends.org/tr/download.html

Probable Error #1: Xampp Doesn't run Apache Server

We will edit a file named as "httpd.conf" at C:\xampp\apache\conf\ directory. With these commands:

ServerName localhost:80

to

ServerName localhost:81

And you will see on the http://localhost:81 address. Your app is working at port:81 now.

WebAPI On OSX

WebAPI On Ubuntu

Last updated

Was this helpful?