Skip to content

Instantly share code, notes, and snippets.

@dndx
Created April 11, 2019 21:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dndx/dad77cd561f25c106a70fd8b26544a72 to your computer and use it in GitHub Desktop.
Save dndx/dad77cd561f25c106a70fd8b26544a72 to your computer and use it in GitHub Desktop.
worker_processes 1;
error_log stderr debug;
daemon off;
pid logs/nginx.pid;
pcre_jit on;
events {
worker_connections 1024;
}
http {
server {
listen 8080;
location ~* /foo {
return 200 'it works!';
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment