Skip to content

dbliu91/quick-x-server

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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/bootstrap.lua;
        }

    }
}

About

Lua Game Server for Nginx-Lua

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published