Skip to content

Instantly share code, notes, and snippets.

@hamishforbes
Created August 18, 2016 15:29
Show Gist options
  • Save hamishforbes/bb47787f723c149c7aca21e760970502 to your computer and use it in GitHub Desktop.
Save hamishforbes/bb47787f723c149c7aca21e760970502 to your computer and use it in GitHub Desktop.
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