Guest User

Untitled

a guest
Mar 17th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. <site name="WebSite1" id="1" serverAutoStart="true">
  2. <application path="/">
  3. <virtualDirectory path="/" physicalPath="%IIS_SITES_HOME%WebSite1" />
  4. </application>
  5. <bindings>
  6. <binding protocol="http" bindingInformation="*:8080:localhost" />
  7. </bindings>
  8. </site>
  9.  
  10. <binding protocol="http" bindingInformation="*:12345:localhost" />
  11. <binding protocol="http" bindingInformation="*:12345:" />
  12.  
  13. netsh http add urlacl url=http://*:49419/ user=Everyone
  14.  
  15. <binding protocol="http" bindingInformation="*:<your site port>:*" />
  16.  
  17. <binding protocol="http" bindingInformation="*:<your site port>:localhost" />
  18.  
  19. "env": {
  20. // ...
  21. "ASPNETCORE_URLS": "http://*:5000" // change to the port you are using
  22. // ...
  23. },
Add Comment
Please, Sign In to add comment