OTA using iis server?
-
It appears the xample for setting up the serevr for OTA requires a python webserver? Do i really need this, can i use IIS?
-
If you just want to serve static updates, you can use IIS. The only reason python is used for that example is because it generates the updates on the fly from any version to the latest. You could generate the JSON files yourself and just statically serve them along with the required files.
-
@misterlisty
you can configure IIS to support python
https://stackoverflow.com/questions/6823316/python-on-iis-howthen yes, you can work with IIS.