Created
July 30, 2013 14:44
-
-
Save bithavoc/6113548 to your computer and use it in GitHub Desktop.
Nginx.conf file to expose ASP.NET development server remotely.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| worker_processes 1; | |
| events { | |
| worker_connections 1024; | |
| } | |
| http { | |
| default_type application/octet-stream; | |
| keepalive_timeout 65; | |
| server { | |
| listen 9999; | |
| server_name localhost; | |
| location / { | |
| proxy_pass http://localhost:51318; # replace the port with your ASP.NET development server por. | |
| } | |
| } | |
| } | |
| # http://johan.heapsource.com/post/56878597229/exposing-asp-net-development-server-remotely |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment