Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 494 Bytes

README.md

File metadata and controls

30 lines (19 loc) · 494 Bytes

Nginx Lua Game Server

Nginx config

http {
    lua_package_path "/pathto/quick-x-server/src/?.lua;;";

    ...

    server {
        listen       8088 so_keepalive=on;

        ...

        location /test {
            root /pathto/quick-x-server/src/server;
            lua_code_cache off;
            lua_socket_log_errors off;
            lua_check_client_abort on;
            content_by_lua_file /pathto/quick-x-server/src/server/nginx_bootstrap.lua;
        }

    }
}