Guest User

Untitled

a guest
Nov 23rd, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. using LetsEncrypt.Owin;
  2. using Owin;
  3. using Telerik.Sitefinity.Owin;
  4.  
  5. namespace SitefinityWebApp
  6. {
  7. public class Startup
  8. {
  9. public void Configuration(IAppBuilder app)
  10. {
  11. // Register default Sitefinity middlewares in the pipeline
  12. app.UseSitefinityMiddleware();
  13. app.UseStaticFiles();
  14. app.UseAcmeChallenge();
  15. }
  16. }
  17. }
Add Comment
Please, Sign In to add comment