Last active
December 15, 2015 12:29
-
-
Save siddontang/5260363 to your computer and use it in GitHub Desktop.
simple nginx example
This file contains 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 { | |
use epoll; | |
} | |
http { | |
default_type text/html; | |
server { | |
listen 80; | |
server_name localhost; | |
location /hello { | |
return 200 } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment