- I used the Asp.net core web API to create a file signing server
- Users can post files to the server, and the server will call signtool.exe to connect to the local USB token to sign the files, and then return them to the client for download
I run the service using
dotnet MyWebApi.DLL --urls=http://localhost:22000
and successfully tested it. The signature was successfully invoked on the server and the signature was successful!
However, after deploying this web service on IIS, I found that the certificate was not recognized and the signature failed. Display in the log:no certificates were found that met
After searching for some relevant information, I modified the permissions of the application pool, but still couldn't function properly like running the dotnet command directlyExcuse me, how should I configure iis?