skip to Main Content

I have written a website in Visual Studio using .Net Framework (4.7.2). (Note: it is not using .net Core)

It is an asp.net website that uses .aspx pages and uses a SQL Server Database on my laptop.

Is it possible to run this website on my Synology NAS and if so would it be able to connect to the database on my laptop (that is on the same network).

2

Answers


  1. You need a full os running windows, and then you also need sql server installed, and you also need iis (internet services (the web server)) installed on that server.

    So you need a windows os, and preferably a server based version of windows (such as windows server 2019).

    Unless that server allows you to install and run windows software? Then no that will not work.

    Login or Signup to reply.
  2. .Net framework app can only be run in Windows OS. But Synology is Linux based.

    So if you want to run your app in Synology badly, you need to convert it to .Net Core app.

    Here is my answer in another question explaining how to run .Net core app in Synology.

    Publish Net Core Web API in NAS Synology

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search