aproxy/nginx.conf

16 lines
257 B
Nginx Configuration File
Raw Normal View History

2022-12-06 03:36:15 +00:00
server {
listen 80;
lua_code_cache off;
location / {
default_type text/html;
# must happen before proxy_pass
access_by_lua_block {
require("aproxy.main")()
}
proxy_pass http://localhost:9999;
}
}