nginx.conf 342 B

1234567891011121314151617
  1. #worker_processes 1;
  2. pid /tmp/nginx.pid;
  3. error_log /dev/null crit;
  4. #error_log /tmp/test.log error;
  5. events {
  6. worker_connections 16384;
  7. }
  8. http {
  9. access_log off;
  10. server {
  11. listen 8080;
  12. location / {
  13. content_by_lua_file '/home/pfalls/FrameworkBenchmarks/openresty/app.lua';
  14. }
  15. }
  16. }