Created
August 18, 2016 15:29
-
-
Save hamishforbes/bb47787f723c149c7aca21e760970502 to your computer and use it in GitHub Desktop.
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
user nginx; | |
worker_processes 1; | |
error_log /var/log/nginx/error.log warn; | |
pid /var/run/nginx.pid; | |
worker_rlimit_nofile 16384; | |
events { | |
worker_connections 8192; | |
} | |
http { | |
default_type application/octet-stream; | |
access_log off; | |
server { | |
listen 80 default_server; | |
server_name pause; | |
location / { | |
echo_sleep 10; | |
echo "OK"; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment