diff --git a/conf/nginx.conf b/conf/nginx.conf new file mode 100644 index 0000000..8cdaa51 --- /dev/null +++ b/conf/nginx.conf @@ -0,0 +1,18 @@ +worker_processes 1; +error_log logs/error.log; +events { + worker_connections 1024; +} +http { + server { + root /opt/www; + listen 8080; + location / { + default_type text/html; + # content_by_lua_block { + # ngx.say("

hello, world

") + # } + } + } +} +