test.conf 236 B

12345678910111213
  1. server {
  2. listen 9302;
  3. server_name test_proxy;
  4. location /test {
  5. content_by_lua_file 'lua/check.lua';
  6. }
  7. error_page 500 502 503 504 /50x.html;
  8. location = /50x.html {
  9. root html;
  10. }
  11. }