From 2908442b2f4cc241c9e746f65a19ae026fb92a2f Mon Sep 17 00:00:00 2001 From: Bob131 Date: Fri, 19 Feb 2016 12:29:52 +1100 Subject: [PATCH] Add nginx config files to SCGI & FastCGI examples --- examples/fastcgi/nginx.conf | 9 +++++++++ examples/scgi/nginx.conf | 9 +++++++++ 2 files changed, 18 insertions(+) create mode 100644 examples/fastcgi/nginx.conf create mode 100644 examples/scgi/nginx.conf diff --git a/examples/fastcgi/nginx.conf b/examples/fastcgi/nginx.conf new file mode 100644 index 000000000..199bb3a8e --- /dev/null +++ b/examples/fastcgi/nginx.conf @@ -0,0 +1,9 @@ +# assuming this file is being included into a http block +server { + listen 3003; + + location / { + # don't forget to change me! + fastcgi_pass unix:/tmp/valum.sock + } +} diff --git a/examples/scgi/nginx.conf b/examples/scgi/nginx.conf new file mode 100644 index 000000000..ecfff9190 --- /dev/null +++ b/examples/scgi/nginx.conf @@ -0,0 +1,9 @@ +# assuming this file is being included into a http block +server { + listen 3003; + + location / { + # don't forget to change me! + scgi_pass unix:/tmp/valum.sock + } +}