libuv-lua-http-server icon indicating copy to clipboard operation
libuv-lua-http-server copied to clipboard

Simple example webserver using libuv and lua

Results 1 libuv-lua-http-server issues
Sort by recently updated
recently updated
newest added

like apache,Only one entrance. ``` RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^(.+) - [PT,L] RewriteCond %{REQUEST_URI} !=/favicon.ico RewriteRule ^(.*) dispatcher.lua/$1 [QSA] ``` And improve the performance of HTTP...