In fact, I have never used Jexus, I use nginx to reverse proxy, I just read a few articles,You should still have to install the dotnet SDK。
Reference articles:
The hyperlink login is visible.
The hyperlink login is visible.
Benefits of running asp.net core with Jexus
1. Easy configuration: On Jexus, Asp.net core is only a "site" on Jexus, so you only need to configure this site on Jexus, no other configuration is required; 2. Unified operation: Jexus will automatically stop the asp.net core application when it stops this site, and similarly, the corresponding core application will be automatically started when this site is started, without multiple operations. 3. High performance: Jexus itself is a high-performance web server with performance comparable to nginx,Between Jexus and Asp.net core, it is TCP forwarding, not HTTP forwarding such as reverse proxy, there is no performance consumption of Http protocol parsing and reorganization, so Jexus can better present the high-performance advantages of Asp.net Core; 4. Port adaptation: On Jexus, asp.net core does not need to set any port numbers, which effectively avoids the problem of port conflicts that are likely to occur in multiple asp.net core applications, which is a headache for O&M personnel. 5. High reliability: If the core application crashes unexpectedly, Jexus will immediately pull it up, so as to achieve 7*24 uninterrupted operation; 6. Support WebSocket: Because it is TCP forwarding, there is no limit to the application layer protocol. 7. The port value of the AppHost is set to 0, which gives the advantage of port adaptation.
|